/* =============================================================
   DistroPro — Distribution Management System
   Custom Stylesheet  |  Built with Bootstrap 5.3
   ============================================================= */

/* ------ CSS Design Tokens ------ */
:root {
    --primary:           #1d4ed8;
    --primary-dark:      #1e40af;
    --primary-light:     #3b82f6;
    --primary-subtle:    #eff6ff;
    --primary-border:    #bfdbfe;

    --sidebar-bg:        #0f172a;
    --sidebar-border:    #1e293b;
    --sidebar-text:      #94a3b8;
    --sidebar-text-act:  #60a5fa;
    --sidebar-hover-bg:  rgba(255,255,255,.05);
    --sidebar-active-bg: rgba(29,78,216,.12);
    --sidebar-section:   #475569;
    --sidebar-width:     260px;

    --topbar-h:          64px;
    --page-bg:           #f1f5f9;
    --card-bg:           #ffffff;
    --card-border:       #e2e8f0;
    --card-radius:       10px;
    --card-shadow:       0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
    --card-shadow-hover: 0 4px 12px rgba(0,0,0,.10);

    --text-1:            #0f172a;
    --text-2:            #475569;
    --text-3:            #94a3b8;
    --border:            #e2e8f0;

    --success:           #059669;
    --warning:           #d97706;
    --danger:            #dc2626;
    --info:              #0284c7;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
            'Helvetica Neue', Arial, sans-serif;
    --ease: 0.2s ease;
}

/* ------ Base ------ */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 14px; }
body {
    font-family: var(--font);
    color: var(--text-1);
    background: var(--page-bg);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* =============================================================
   LAYOUT
   ============================================================= */
#layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* =============================================================
   SIDEBAR
   ============================================================= */
#sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    z-index: 1040;
    transition: transform var(--ease);
}

/* Brand */
.sidebar-brand {
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid var(--sidebar-border);
    flex-shrink: 0;
    overflow: hidden;
}
.brand-mark {
    width: 34px; height: 34px;
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 17px;
    flex-shrink: 0;
}
.brand-info { margin-left: 10px; overflow: hidden; }
.brand-name {
    display: block;
    color: #f1f5f9; font-size: 14.5px; font-weight: 700;
    letter-spacing: -.3px; white-space: nowrap;
}
.brand-tagline {
    display: block;
    color: #475569; font-size: 10px; font-weight: 500;
    letter-spacing: .6px; text-transform: uppercase; white-space: nowrap;
}

/* Nav scroll area */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.07) transparent;
}
.sidebar-nav::-webkit-scrollbar { width: 3px; }
.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.07); border-radius: 2px;
}

/* Section label */
.nav-section-label {
    padding: 14px 18px 4px;
    font-size: 10px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--sidebar-section);
    user-select: none;
}
.nav-section-label:first-child { padding-top: 4px; }

/* Nav link */
.nav-link-item {
    display: flex; align-items: center;
    padding: 8px 18px;
    color: var(--sidebar-text);
    font-size: 13px; font-weight: 500;
    border-left: 2px solid transparent;
    transition: all var(--ease);
    gap: 9px;
    white-space: nowrap; overflow: hidden;
}
.nav-link-item i {
    font-size: 15px; width: 18px;
    flex-shrink: 0; text-align: center;
}
.nav-link-item:hover {
    color: #e2e8f0;
    background: var(--sidebar-hover-bg);
    border-left-color: #334155;
}
.nav-link-item.active {
    color: var(--sidebar-text-act);
    background: var(--sidebar-active-bg);
    border-left-color: var(--primary-light);
}
.nav-link-item.nav-disabled {
    opacity: .35;
    pointer-events: none;
    cursor: default;
}
.nav-badge {
    margin-left: auto; flex-shrink: 0;
    font-size: 9.5px; font-weight: 600;
    padding: 1px 6px; border-radius: 10px;
    background: rgba(71,85,105,.45); color: #64748b;
    letter-spacing: .3px;
}

/* Sidebar footer */
.sidebar-footer {
    border-top: 1px solid var(--sidebar-border);
    padding: 10px 12px;
    flex-shrink: 0;
}
.sidebar-user {
    display: flex; align-items: center;
    gap: 9px; padding: 8px;
    border-radius: 8px; cursor: pointer;
    transition: background var(--ease);
    overflow: hidden;
}
.sidebar-user:hover { background: var(--sidebar-hover-bg); }
.s-avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff; font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; text-transform: uppercase;
}
.s-user-name {
    color: #cbd5e1; font-size: 12.5px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.s-user-role {
    color: #475569; font-size: 10.5px; white-space: nowrap;
}
.sidebar-logout {
    margin-left: auto;
    color: #475569; background: none; border: none;
    cursor: pointer; padding: 5px;
    border-radius: 5px; line-height: 1;
    transition: color var(--ease); flex-shrink: 0;
}
.sidebar-logout:hover { color: #ef4444; }

/* =============================================================
   PAGE WRAPPER
   ============================================================= */
#page-wrap {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex; flex-direction: column;
    min-height: 100vh;
    transition: margin-left var(--ease);
}

/* =============================================================
   TOP NAVBAR
   ============================================================= */
#topnav {
    height: var(--topbar-h);
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center;
    padding: 0 24px; gap: 12px;
    position: sticky; top: 0; z-index: 1030;
}
.topnav-toggle {
    background: none; border: none;
    color: var(--text-2); font-size: 20px;
    cursor: pointer; padding: 5px 7px;
    border-radius: 6px; display: none; line-height: 1;
}
.topnav-toggle:hover { background: #f1f5f9; color: var(--text-1); }
.breadcrumb-area { flex: 1; }
.breadcrumb-area .page-title {
    font-size: 14.5px; font-weight: 600;
    color: var(--text-1); margin: 0;
}
.breadcrumb {
    background: none; padding: 0; margin: 0; font-size: 12px;
}
.breadcrumb-item a { color: var(--text-3); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-2); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-3); }

/* Topnav right */
.topnav-right { display: flex; align-items: center; gap: 4px; }
.topnav-btn {
    background: none; border: none;
    color: var(--text-2); font-size: 17px;
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; position: relative;
    transition: background var(--ease), color var(--ease);
}
.topnav-btn:hover { background: #f1f5f9; color: var(--text-1); }
.badge-dot {
    position: absolute; top: 6px; right: 6px;
    width: 7px; height: 7px;
    background: var(--danger);
    border-radius: 50%; border: 2px solid #fff;
}
.topnav-user {
    display: flex; align-items: center;
    gap: 7px; padding: 5px 10px;
    border-radius: 8px; cursor: pointer;
    border: none; background: none;
    transition: background var(--ease);
    color: var(--text-1);
}
.topnav-user:hover { background: #f1f5f9; }
.t-avatar {
    width: 30px; height: 30px; border-radius: 7px;
    background: var(--primary); color: #fff;
    font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; text-transform: uppercase;
}

/* =============================================================
   PAGE BODY
   ============================================================= */
.page-body {
    flex: 1;
    padding: 28px;
}
.page-header { margin-bottom: 22px; }
.page-header h4 {
    font-size: 18px; font-weight: 700;
    color: var(--text-1); margin: 0 0 3px;
}
.page-header p {
    color: var(--text-3); font-size: 13px; margin: 0;
}

/* =============================================================
   CARDS
   ============================================================= */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}
.card-header {
    background: transparent;
    border-bottom: 1px solid var(--card-border);
    padding: 14px 18px;
    font-weight: 600; font-size: 13.5px;
    color: var(--text-1);
    display: flex; align-items: center; gap: 8px;
}
.card-header i { color: var(--text-3); font-size: 15px; }
.card-body { padding: 18px; }
.card-footer {
    background: #fafbfc;
    border-top: 1px solid var(--card-border);
    padding: 10px 18px;
    font-size: 12px; color: var(--text-3);
}

/* =============================================================
   STAT CARDS
   ============================================================= */
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 20px; box-shadow: var(--card-shadow);
    display: flex; align-items: flex-start; gap: 14px;
    transition: transform var(--ease), box-shadow var(--ease);
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}
.stat-icon-wrap {
    width: 46px; height: 46px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.icon-blue   { background: #eff6ff; color: #1d4ed8; }
.icon-amber  { background: #fffbeb; color: #b45309; }
.icon-red    { background: #fef2f2; color: #dc2626; }
.icon-green  { background: #f0fdf4; color: #059669; }
.icon-purple { background: #faf5ff; color: #7c3aed; }
.icon-teal   { background: #f0fdfa; color: #0f766e; }

.stat-content { flex: 1; min-width: 0; }
.stat-label {
    font-size: 12px; font-weight: 500;
    color: var(--text-3); margin-bottom: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.stat-value {
    font-size: 24px; font-weight: 700;
    color: var(--text-1); line-height: 1.1; margin-bottom: 4px;
}
.stat-change {
    font-size: 11.5px; font-weight: 600;
    display: flex; align-items: center; gap: 3px;
}
.stat-change.up  { color: var(--success); }
.stat-change.dn  { color: var(--danger); }
.stat-change.neu { color: var(--text-3); }

/* =============================================================
   TABLES
   ============================================================= */
.table { font-size: 13px; color: var(--text-1); margin: 0; }
.table thead th {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .6px;
    color: var(--text-3);
    border-bottom: 1px solid var(--card-border);
    padding: 10px 14px; white-space: nowrap;
    background: #f8fafc;
}
.table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover td { background: #fafbfc; }

/* Status badges */
.badge-status {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px; border-radius: 20px;
    font-size: 11px; font-weight: 600;
}
.badge-status::before {
    content: ''; width: 5px; height: 5px;
    border-radius: 50%; background: currentColor;
}
.bs-active   { background: #f0fdf4; color: #16a34a; }
.bs-pending  { background: #fffbeb; color: #b45309; }
.bs-inactive { background: #f1f5f9; color: #94a3b8; }
.bs-danger   { background: #fef2f2; color: #dc2626; }
.bs-info     { background: #eff6ff; color: #1d4ed8; }
.bs-system   { background: #faf5ff; color: #7c3aed; }

/* Role / permission badges */
.role-badge {
    display: inline-block;
    padding: 2px 8px; border-radius: 6px;
    font-size: 11px; font-weight: 600;
    background: var(--primary-subtle);
    color: var(--primary);
    border: 1px solid var(--primary-border);
}

/* =============================================================
   BUTTONS (overrides)
   ============================================================= */
.btn {
    font-size: 13px; font-weight: 600;
    border-radius: 8px; padding: 7px 14px;
    transition: all var(--ease);
    display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary); color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 10px rgba(29,78,216,.25);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary-border);
}
.btn-outline-primary:hover {
    background: var(--primary-subtle);
    border-color: var(--primary);
    color: var(--primary);
}
.btn-sm { padding: 5px 10px; font-size: 12px; border-radius: 6px; }
.btn-icon {
    width: 32px; height: 32px; padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 6px; font-size: 14px;
}

/* =============================================================
   FORM CONTROLS
   ============================================================= */
.form-control, .form-select {
    border: 1px solid #d1d5db; border-radius: 8px;
    font-size: 13.5px; color: var(--text-1);
    padding: 9px 13px;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59,130,246,.12);
    outline: none;
}
.form-label {
    font-size: 12.5px; font-weight: 600;
    color: #374151; margin-bottom: 5px;
}
.form-text { font-size: 11.5px; color: var(--text-3); }

/* =============================================================
   QUICK ACTION TILES
   ============================================================= */
.quick-action {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; padding: 16px;
    background: #f8fafc;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-2); font-size: 12px; font-weight: 600;
    cursor: pointer; transition: all var(--ease);
    text-decoration: none; text-align: center;
}
.quick-action i { font-size: 22px; color: var(--primary); }
.quick-action:hover {
    background: var(--primary-subtle);
    border-color: var(--primary-border);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(29,78,216,.1);
}

/* =============================================================
   ALERTS
   ============================================================= */
.alert {
    border-radius: 8px; font-size: 13px;
    padding: 10px 14px; border: none;
    display: flex; align-items: flex-start; gap: 8px;
}
.alert-danger  { background: #fef2f2; color: #b91c1c; }
.alert-success { background: #f0fdf4; color: #15803d; }
.alert-warning { background: #fffbeb; color: #b45309; }
.alert-info    { background: #eff6ff; color: #1d4ed8; }

/* =============================================================
   EMPTY STATE
   ============================================================= */
.empty-state {
    text-align: center; padding: 48px 20px; color: var(--text-3);
}
.empty-state i {
    font-size: 42px; display: block;
    margin-bottom: 12px; opacity: .35;
}
.empty-state h6 {
    font-size: 14px; font-weight: 600;
    color: var(--text-2); margin-bottom: 6px;
}
.empty-state p { font-size: 12.5px; margin: 0; }

/* =============================================================
   DROPDOWN overrides
   ============================================================= */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 10px; font-size: 13px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    padding: 6px;
}
.dropdown-item {
    border-radius: 6px; padding: 7px 10px;
    color: var(--text-1); font-size: 13px;
    display: flex; align-items: center; gap: 8px;
}
.dropdown-item:hover { background: #f1f5f9; color: var(--text-1); }
.dropdown-item.text-danger:hover { background: #fef2f2; }
.dropdown-divider { border-color: var(--border); margin: 4px 0; }
.dropdown-header {
    font-size: 12px; padding: 6px 10px;
    color: var(--text-3);
}

/* =============================================================
   PAGINATION
   ============================================================= */
.pagination { gap: 3px; }
.page-link {
    border-radius: 7px !important;
    border: 1px solid var(--border);
    color: var(--text-2); font-size: 13px;
    padding: 6px 11px;
    transition: all var(--ease);
}
.page-link:hover { background: #f1f5f9; color: var(--primary); border-color: var(--primary-border); }
.page-item.active .page-link {
    background: var(--primary); border-color: var(--primary);
}
.page-item.disabled .page-link { color: var(--text-3); }

/* =============================================================
   DSR BILL HISTORY — compact table, no cell wrapping, and a
   clearly separated/highlighted totals row.
   ============================================================= */
.dsr-history-table th,
.dsr-history-table td {
    white-space: nowrap;
    font-size: 12.5px;
}
.dsr-history-totals td {
    font-weight: 700;
    background: var(--primary-subtle);
    border-top: 2px solid var(--primary-border);
}

/* =============================================================
   RATE PLANNER — very compact single-row-per-product table (Rate
   Lists product table): tight padding/font so every column and
   product fits without a horizontal scroll.
   ============================================================= */
.rate-planner-table th,
.rate-planner-table td {
    white-space: nowrap;
    font-size: 11.5px;
    padding: 3px 6px;
    vertical-align: middle;
}
.rate-planner-table .form-control-sm {
    padding: 1px 5px;
    font-size: 11.5px;
    height: calc(1.4em + 4px);
}

/* =============================================================
   FLATPICKR — theme to match the app's color tokens
   ============================================================= */
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
    border: 1px solid var(--border);
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.flatpickr-day.today {
    border-color: var(--primary);
}
.flatpickr-day.today:hover {
    background: var(--primary-subtle);
    color: var(--primary);
}
.flatpickr-day:hover {
    background: var(--primary-subtle);
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
span.flatpickr-weekday {
    color: var(--text-1, #0f172a);
}

/* =============================================================
   RESPONSIVE — SIDEBAR COLLAPSE
   ============================================================= */
@media (max-width: 991.98px) {
    #sidebar { transform: translateX(-100%); }
    #sidebar.sidebar-open { transform: translateX(0); }
    #page-wrap { margin-left: 0; }
    .topnav-toggle { display: flex; }
    .page-body { padding: 18px; }
}
#sidebar-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.4); z-index: 1039;
    cursor: pointer;
}
#sidebar-overlay.show { display: block; }

/* =============================================================
   AUTH / LOGIN PAGE
   ============================================================= */
body.auth-body {
    background: #f1f5f9;
    min-height: 100vh;
}
.auth-wrapper {
    min-height: 100vh;
    display: flex;
}

/* Left brand panel */
.auth-panel-left {
    width: 44%;
    background: var(--sidebar-bg);
    display: flex;
    align-items: center; justify-content: center;
    padding: 60px 52px;
    position: relative; overflow: hidden;
}
.auth-panel-left::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 18% 62%, rgba(29,78,216,.22) 0%, transparent 55%),
        radial-gradient(ellipse at 78% 12%, rgba(59,130,246,.13) 0%, transparent 50%);
    pointer-events: none;
}
.auth-panel-left::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.auth-brand-box {
    position: relative; z-index: 1;
    max-width: 380px; width: 100%;
}
.auth-logo-mark {
    width: 54px; height: 54px;
    background: var(--primary);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(29,78,216,.4);
}
.auth-brand-title {
    color: #f1f5f9; font-size: 26px; font-weight: 700;
    margin-bottom: 10px; line-height: 1.3; letter-spacing: -.5px;
}
.auth-brand-subtitle {
    color: #64748b; font-size: 14px; line-height: 1.65;
    margin-bottom: 40px;
}
.auth-feature-list { display: flex; flex-direction: column; gap: 14px; }
.auth-feature-item {
    display: flex; align-items: center; gap: 12px;
    color: #94a3b8; font-size: 13px;
}
.auth-feature-icon {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #60a5fa; font-size: 14px; flex-shrink: 0;
}

/* Right form panel */
.auth-panel-right {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 48px 56px;
    background: #fff;
}
.auth-form-box { width: 100%; max-width: 380px; }
.auth-form-header { margin-bottom: 28px; }
.auth-form-header h2 {
    font-size: 22px; font-weight: 700;
    color: var(--text-1); margin-bottom: 6px;
    letter-spacing: -.4px;
}
.auth-form-header p { color: var(--text-3); font-size: 13.5px; margin: 0; }

/* Mobile logo */
.auth-logo-mobile {
    display: none; align-items: center;
    gap: 10px; margin-bottom: 24px;
}
.auth-logo-mobile .logo-mark {
    width: 36px; height: 36px;
    background: var(--primary); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff;
}
.auth-logo-mobile .logo-text {
    font-size: 16px; font-weight: 700; color: var(--text-1);
}

/* Input with icon */
.input-icon-wrap { position: relative; }
.input-icon-wrap .form-control { padding-left: 38px; }
.input-icon-wrap .i-icon {
    position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-3); font-size: 14px; pointer-events: none;
}
.input-icon-wrap .form-control.pr-icon { padding-right: 40px; }

/* Password toggle */
.pw-toggle {
    position: absolute; right: 12px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: var(--text-3); cursor: pointer;
    padding: 4px; line-height: 1;
    border-radius: 4px;
    transition: color var(--ease);
}
.pw-toggle:hover { color: var(--text-1); }

.auth-footer {
    margin-top: 28px; padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center; color: var(--text-3); font-size: 12px;
}

/* Responsive auth */
@media (max-width: 991.98px) {
    .auth-panel-left { display: none; }
    .auth-panel-right { padding: 36px 24px; }
    .auth-logo-mobile { display: flex; }
}

/* =============================================================
   GLOBAL SCROLLBAR
   ============================================================= */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
