/* ========== VARIÁVEIS E RESET ========== */
:root {
    --primary-color: #FFD700;
    --primary-dark: #FFA500;
    --secondary-color: #2C3E50;
    --background: #F5F7FA;
    --card-bg: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    --info: #3498DB;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ========== SCREENS ========== */
.screen {
    display: none;
    animation: fadeIn 0.4s ease;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== TELA DE LOGIN ========== */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    font-size: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.logo-img-login {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.logo-img-header {
    height: 36px;
    width: auto;
    display: block;
}

.logo-container h1 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.logo-container p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.form-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ========== HEADER ========== */
.header {
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-small {
    font-size: 32px;
    display: flex;
    align-items: center;
}

.header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-info {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ========== NAVEGAÇÃO ========== */
.nav-tabs {
    background: var(--card-bg);
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

.nav-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-tab:hover {
    background: var(--background);
    color: var(--text-primary);
}

.nav-tab.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* ========== CONTEÚDO PRINCIPAL ========== */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px 24px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
}

.tab-content.active {
    display: block;
}

/* Primeiro card de cada tab comeca sem espaco extra */
.tab-content > .card:first-child,
.tab-content > div:first-child > .card:first-child {
    margin-top: 0;
}

/* ========== CARDS ========== */
.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 20px;
}

.card h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 16px;
}

/* ========== FORMULÁRIOS ========== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input[type="file"] {
    padding: 8px;
    cursor: pointer;
    background: var(--background);
}

.form-group input[type="file"]:hover {
    background: #E8EAF6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-inline {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-inline .form-group {
    flex: 1;
    min-width: 200px;
}

/* ========== BOTÕES ========== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    line-height: 1.2;
    -webkit-appearance: none;
    appearance: none;
    text-decoration: none;
    vertical-align: middle;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: white;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--secondary-color);
}

.btn-outline:hover:not(:disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========== SPINNER ========== */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

.spinner-dark {
    width: 32px;
    height: 32px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== INFO DO PEDIDO ========== */
.pedido-info {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.valor-destaque {
    color: var(--success);
    font-size: 20px !important;
    font-weight: 700 !important;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--info);
    color: white;
}

/* ========== OPERATIONS GRID ========== */
.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.operation-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

/* ========== LOGS ========== */
.logs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.logs-filters {
    display: flex;
    gap: 12px;
}

.logs-filters select {
    padding: 8px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
}

.logs-container {
    max-height: 600px;
    overflow-y: auto;
}

.log-item {
    padding: 16px;
    border-left: 4px solid var(--info);
    background: var(--background);
    margin-bottom: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.log-item:hover {
    background: #ECF0F1;
    transform: translateX(4px);
}

.log-item.sucesso { border-left-color: var(--success); }
.log-item.erro { border-left-color: var(--danger); }

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.log-acao {
    font-weight: 700;
    color: var(--text-primary);
}

.log-timestamp {
    font-size: 12px;
    color: var(--text-secondary);
}

.log-detalhes {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.log-usuario {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========== TOAST ========== */
.toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--card-bg);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 300px;
    max-width: 400px;
    border-left: 4px solid var(--info);
    animation: toastSlide 0.3s ease;
}

@keyframes toastSlide {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }

.toast-header {
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-message {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== ERROS ========== */
.error-message {
    padding: 12px;
    background: #FFEBEE;
    color: var(--danger);
    border-radius: 8px;
    margin-top: 12px;
    font-size: 14px;
}

/* ========== LOADING ========== */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-secondary);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .nav-tabs {
        padding: 12px;
    }

    .main-content {
        padding: 0 12px 12px;
    }

    .form-inline {
        flex-direction: column;
    }

    .form-inline .form-group {
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .operations-grid {
        grid-template-columns: 1fr;
    }

    .toast-container {
        right: 12px;
        left: 12px;
    }

    .toast {
        min-width: auto;
    }
}

/* ========== CARD DE CONTEXTO ========== */
.card-contexto {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--secondary-color);
    margin-bottom: 24px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.card-contexto h4 {
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.contexto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.contexto-grid div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contexto-grid strong {
    font-weight: 700;
}

/* ========== BOTÃO IR PARA OPERAÇÕES ========== */
#btn-ir-operacoes {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 2px solid var(--background);
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--background);
    color: var(--text-primary);
}

.modal-content form {
    padding: 24px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

/* ========== LISTA DE USUÁRIOS ========== */
.usuarios-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.usuarios-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.usuario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--background);
    border-radius: 8px;
    transition: var(--transition);
}

.usuario-item:hover {
    background: #E8EAF6;
    transform: translateX(4px);
}

.usuario-info {
    flex: 1;
}

.usuario-info h4 {
    margin: 0 0 4px 0;
    color: var(--text-primary);
    font-size: 16px;
}

.usuario-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.usuario-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 8px;
}

.usuario-badge.admin {
    background: var(--danger);
    color: white;
}

.usuario-badge.gerente {
    background: var(--warning);
    color: white;
}

.usuario-badge.vendedor {
    background: var(--info);
    color: white;
}

.usuario-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

/* ========== TABELA DE ENTREGAS ========== */
.entregas-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 700px;
}

.entregas-table thead tr {
    background: var(--secondary-color);
    color: white;
}

.entregas-table th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.entregas-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #E8ECEF;
    color: var(--text-primary);
    vertical-align: middle;
}

.entregas-table tbody tr:hover {
    background: var(--background);
}

.entregas-table tr.entrega-urgente {
    background: #FFF8E1;
}

.entregas-table tr.entrega-urgente:hover {
    background: #FFF3CD;
}

.badge-urgencia {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-urgencia.urgente {
    background: var(--danger);
    color: white;
}

.badge-urgencia.normal {
    background: var(--info);
    color: white;
}

.badge-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-status.agendado {
    background: #E3F2FD;
    color: #1565C0;
}

.badge-status.sem-status {
    background: #F3E5F5;
    color: #6A1B9A;
}

.btn-concluir {
    padding: 4px 12px;
    font-size: 13px;
    white-space: nowrap;
}

/* ========== CONFIGURAÇÕES ========== */
.config-section {
    padding: 20px 0;
    border-bottom: 1px solid #E8ECEF;
}

.config-section:last-child {
    border-bottom: none;
}

.config-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.toggle-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-dark);
    cursor: pointer;
}

.config-status {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.config-status-ok {
    background: #E8F5E9;
    color: #2E7D32;
}

.config-status-warn {
    background: #FFF8E1;
    color: #F57F17;
}

/* ========== TROCAS / DEVOLUÇÕES ========== */
.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

.troca-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    font-size: 14px;
}

.troca-fiscal-box {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.35);
    border-radius: 8px;
    font-size: 13px;
}

.troca-item-card {
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    transition: var(--transition);
    background: var(--card-bg);
}

.troca-item-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.troca-item-selecionado {
    border-color: var(--primary-dark) !important;
    background: #FFFBEA !important;
    box-shadow: 0 0 0 3px rgba(255,165,0,0.15) !important;
}

.troca-item-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    width: 100%;
}

.troca-item-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-dark);
    flex-shrink: 0;
    margin-top: 3px;
    cursor: pointer;
}

.troca-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.troca-item-info strong {
    font-size: 15px;
    color: var(--text-primary);
}

.troca-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.troca-item-qtd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #E8ECEF;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    flex-wrap: wrap;
}

.troca-item-qtd input[type="number"] {
    padding: 6px 10px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    transition: var(--transition);
}

.troca-item-qtd input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.troca-resumo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #E8ECEF;
}

.troca-resumo-item:last-child {
    border-bottom: none;
}

.troca-resumo-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.troca-total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin: 16px 0;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

/* ========== FATURAMENTO ========== */
.fat-date-input {
    padding: 10px 14px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.fat-date-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.fat-totais-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

.fat-total-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    border-radius: 10px;
    background: var(--background);
    border-left: 4px solid var(--info);
}

.fat-total-item span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fat-total-item strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.fat-total-verde  { border-left-color: var(--success); }
.fat-total-verde strong { color: var(--success); }

.fat-total-vermelho { border-left-color: var(--danger); }
.fat-total-vermelho strong { color: var(--danger); }

.fat-total-azul { border-left-color: var(--info); }
.fat-total-azul strong { color: var(--info); }

.fat-total-cancelado { border-left-color: #888; }
.fat-total-cancelado strong { color: #888; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: #BDC3C7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #95A5A6;
}
