/**
 * Vivaan EMS — modern UI layer (loads after main.css + enhancements.css)
 */
:root {
    --primary: #0e7490;
    --primary-dark: #0c4a6e;
    --primary-light: #06b6d4;
    --accent: #14b8a6;
    --accent-soft: #ccfbf1;
    --bg: #f1f5f9;
    --bg-elevated: #ffffff;
    --card: #ffffff;
    --text: #0f172a;
    --text-secondary: #475569;
    --muted: #64748b;
    --border: #e2e8f0;
    --border-focus: #22d3ee;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
    --font-sans: 'Funnel Sans', 'Lexend', 'Segoe UI', system-ui, sans-serif;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* —— Auth —— */
.auth-split .auth-right {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.auth-card {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 2rem 2.25rem;
}

.auth-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrap .form-control {
    padding-right: 2.75rem;
    width: 100%;
}

.btn-password-toggle {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.15s ease, background 0.15s ease;
}

.btn-password-toggle:hover {
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.1);
}

.btn-password-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.btn-password-toggle:focus-visible {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

.btn-password-toggle i {
    font-size: 1.1rem;
    pointer-events: none;
}

.auth-left,
.auth-register-logo {
    background: linear-gradient(145deg, #ecfeff 0%, #e0f2fe 50%, #f0f9ff 100%);
}

.welcome-page {
    background: linear-gradient(135deg, #0c4a6e 0%, #0891b2 45%, #2dd4bf 100%);
}

.welcome-big-text {
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.btn-primary {
    background: linear-gradient(120deg, #4f46e5, #0ea5e9);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    box-shadow: 0 8px 20px -12px rgba(79, 70, 229, 0.55);
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.btn-primary:hover {
    background: linear-gradient(120deg, #4338ca, #0284c7);
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 12px 28px -10px rgba(34, 211, 238, 0.45);
}

.form-control {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 0.7rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.form-group label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* —— Sidebar —— */
.sidebar {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-right: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.sidebar-header {
    padding: 1.5rem 1rem 1rem;
    border-bottom: none;
}

.sidebar-user-card {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0.65rem 0.5rem;
    padding: 0.5rem 0.55rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: none;
}

.sidebar-user-avatar {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1e3a8a, #3b82f6);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.sidebar-user-info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.sidebar-user-primary {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
}

.sidebar-user-name {
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.sidebar-user-role {
    flex-shrink: 0;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1d4ed8;
    background: #dbeafe;
    border-radius: 999px;
    padding: 0.1rem 0.38rem;
    line-height: 1.35;
}

.sidebar-user-meta {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-width: 0;
    color: #64748b;
    font-size: 0.68rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-user-meta i {
    font-size: 0.62rem;
    margin-right: 0.1rem;
}

.sidebar-user-dot {
    color: #94a3b8;
    font-weight: 700;
}

.sidebar-nav {
    padding: 0.5rem 0.75rem;
}

.nav-item {
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    position: relative;
}

.nav-item i {
    font-size: 1.15rem;
    opacity: 0.85;
}

.nav-item:hover {
    background: linear-gradient(90deg, #eef2ff, #f5f3ff);
    color: #4f46e5;
    border-color: transparent;
}

.nav-item.active {
    background: linear-gradient(90deg, #eef2ff, #ecfeff);
    color: #4f46e5;
    border-color: transparent;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #6366f1;
}

.sidebar-footer {
    border-top: 1px solid var(--border);
    padding: 1rem;
}

.toggle-sidebar {
    background: #fff;
    color: var(--primary-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.55rem 0.7rem;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.15s;
}

.toggle-sidebar:hover {
    background: #ecfeff;
    transform: scale(1.03);
}

/* —— Top bar & content —— */
.top-bar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.content-area {
    padding: 1.5rem 1.75rem 2rem;
    background: var(--bg);
}

.page-title {
    text-align: left;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

/* —— Cards —— */
.card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.25rem;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.09);
}

.card-header {
    padding: 1rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
}

.card-header.blue {
    background: linear-gradient(90deg, #0c4a6e, #0e7490);
    border-left: none;
}

.card-header.teal {
    background: linear-gradient(90deg, #0f766e, #14b8a6);
    border-left: none;
}

.card-header.orange {
    background: linear-gradient(90deg, #c2410c, #ea580c);
    border-left: none;
}

.card-header.cyan {
    background: linear-gradient(90deg, #155e75, #0891b2);
    border-left: none;
}

.card-body {
    padding: 1.35rem 1.5rem;
}

/* —— Tables —— */
.table,
.table-modern {
    border-collapse: separate;
    border-spacing: 0;
}

.table th,
.table-modern th {
    background: #f8fafc;
    border: none;
    border-bottom: 2px solid var(--border);
    padding: 0.75rem 0.85rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    font-weight: 600;
}

.table td,
.table-modern td {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    padding: 0.75rem 0.85rem;
    vertical-align: middle;
}

.table tbody tr:hover td,
.table-modern tbody tr:hover td {
    background: #f8fafc;
}

/* —— Buttons —— */
.btn-modern,
.btn-teal {
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary.btn-modern {
    background: linear-gradient(120deg, #4f46e5, #0ea5e9);
    box-shadow: 0 8px 20px -12px rgba(79, 70, 229, 0.55);
}

.btn-accent.btn-modern {
    background: linear-gradient(120deg, #0d9488, #22d3ee);
}

.btn-secondary.btn-modern {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.btn-secondary.btn-modern:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-teal {
    background: linear-gradient(120deg, #0f766e, #14b8a6);
    box-shadow: 0 8px 20px -12px rgba(20, 184, 166, 0.4);
}

.btn-teal:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(20, 184, 166, 0.4);
}

/* —— Alerts —— */
.alert {
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.alert-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.alert-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #b45309;
}

.alert-info {
    background: #ecfeff;
    border-color: #a5f3fc;
    color: #0e7490;
}

/* —— Home hero —— */
.home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
    text-align: center;
    padding: 2rem;
}

.home-hero .logo-home {
    max-width: 400px;
    filter: drop-shadow(0 8px 24px rgba(15, 23, 42, 0.08));
}

.home-hero h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1.5rem 0 0.5rem;
    letter-spacing: -0.02em;
}

.home-hero p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 420px;
    line-height: 1.6;
}

.home-quick-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.home-tip {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-tip i {
    color: var(--accent);
}

/* —— Admin panels —— */
.admin-page {
    max-width: 1140px;
}

.admin-panel-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.admin-page-header h1 {
    letter-spacing: -0.02em;
}

.admin-table th {
    background: #f8fafc;
    border-bottom: 2px solid var(--border);
}

.admin-table td {
    border-bottom: 1px solid #f1f5f9;
}

.pill {
    font-weight: 600;
    padding: 0.25rem 0.7rem;
}

/* —— Modals —— */
.modal-success-box {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.modal-success-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

/* —— Filter toolbar —— */
.filter-toolbar {
    background: #f8fafc;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.filter-card .card-body {
    padding: 1rem 1.25rem;
}

/* —— Permissions & toggles —— */
.perm-check {
    border-radius: var(--radius-md);
    background: #fff;
}

.perm-check-on {
    background: #eef2ff;
    border-color: #a5b4fc;
}

.toggle-slider {
    background: #cbd5e1;
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(120deg, #6366f1, #22d3ee);
}

/* —— Theme variants —— */
.theme-dark {
    --bg: #0f172a;
    --card: #1e293b;
    --text: #f1f5f9;
    --text-secondary: #cbd5e1;
    --muted: #94a3b8;
    --border: #334155;
}

.theme-dark .sidebar {
    background: linear-gradient(180deg, #1e293b, #0f172a);
}

.theme-dark .top-bar {
    background: rgba(30, 41, 59, 0.9);
}

.theme-dark .form-control {
    background: #0f172a;
    color: var(--text);
}

.theme-ocean {
    --bg: #f0f9ff;
}

.font-funnel body,
.font-funnel {
    font-family: 'Funnel Sans', system-ui, sans-serif;
}

.font-system body,
.font-system {
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* —— Help & Support —— */
.help-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.25rem;
    align-items: start;
}

.help-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.panel-card-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.panel-card-title i {
    color: #6366f1;
}

.help-map {
    margin-top: 0.85rem;
    overflow: hidden;
    line-height: 0;
}

.help-map iframe {
    width: 100%;
    height: 240px;
    border: 0;
    display: block;
    filter: saturate(1.05);
}

@media (max-width: 900px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
}

.help-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.help-contact-item:last-child {
    border-bottom: none;
}

.help-contact-item i {
    font-size: 1.15rem;
    color: var(--accent);
    background: var(--accent-soft);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-contact-label {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
}

.help-contact-item a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.help-contact-item a:hover {
    text-decoration: underline;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1rem 1.15rem;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item:hover {
    border-color: #bae6fd;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-question i {
    color: var(--accent);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    padding-left: 1.6rem;
}

/* ===================================================================
   Help & Support — redesigned (user console)
   =================================================================== */
.help2-hero {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 2rem 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    background:
        radial-gradient(900px 500px at 12% -20%, rgba(255, 255, 255, 0.22), transparent 60%),
        linear-gradient(120deg, #6366f1 0%, #4f46e5 40%, #0ea5e9 100%);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.22);
}
.help2-hero::after {
    content: "";
    position: absolute;
    right: -40px; top: -40px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.help2-hero-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 0.9rem;
    backdrop-filter: blur(4px);
}
.help2-hero h1 { font-size: 1.85rem; font-weight: 800; margin: 0 0 0.35rem; }
.help2-hero p { margin: 0; font-size: 1rem; opacity: 0.92; max-width: 560px; }
.help2-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.3rem; position: relative; z-index: 1; }
.help2-chip {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.help2-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 900px) { .help2-layout { grid-template-columns: 1fr; } }

.help2-section-title {
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 1.05rem; font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 1rem;
}
.help2-section-title i { color: var(--accent); }

.help2-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}
@media (max-width: 540px) { .help2-contact-grid { grid-template-columns: 1fr; } }

.help2-contact-card {
    display: flex; flex-direction: column; gap: 0.35rem;
    padding: 1.05rem 1.1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.help2-contact-card:hover {
    transform: translateY(-3px);
    border-color: #bae6fd;
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.14);
}
.help2-contact-card .ico {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    color: var(--accent);
    background: var(--accent-soft);
    margin-bottom: 0.35rem;
}
.help2-contact-card .lbl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); font-weight: 600; }
.help2-contact-card .val { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); word-break: break-word; }
.help2-contact-card a.val { color: var(--primary); text-decoration: none; }
.help2-contact-card a.val:hover { text-decoration: underline; }

.help2-faq { display: flex; flex-direction: column; gap: 0.7rem; }
.faq2-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.faq2-item[open] { border-color: #bae6fd; box-shadow: 0 10px 24px rgba(2, 132, 199, 0.1); }
.faq2-item summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.95rem 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.faq2-item summary::-webkit-details-marker { display: none; }
.faq2-item summary .q-ico { color: var(--accent); }
.faq2-item summary .chev { margin-left: auto; transition: transform 0.2s; color: var(--muted); }
.faq2-item[open] summary .chev { transform: rotate(180deg); }
.faq2-item .faq2-body {
    padding: 0 1.1rem 1rem 2.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* —— MFA / 2FA setup —— */
.mfa-setup-wrap {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.mfa-setup-card {
    width: 100%;
    max-width: 460px;
}

.mfa-setup-card h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mfa-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
}

.mfa-qr {
    padding: 0.75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    line-height: 0;
}

.mfa-manual {
    text-align: center;
}

.mfa-manual-label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.mfa-secret {
    display: inline-block;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 1rem;
    letter-spacing: 0.12em;
    background: var(--accent-soft);
    color: var(--primary-dark);
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    word-break: break-all;
}

.mfa-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.mfa-status-on {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    margin: 1rem 0 1.25rem;
}

.mfa-status-on i {
    font-size: 1.7rem;
    color: #059669;
}

.mfa-status-on strong {
    display: block;
    color: #065f46;
}

.mfa-status-on span {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Scrollbar */
.content-area::-webkit-scrollbar,
.sidebar-nav::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.content-area::-webkit-scrollbar-thumb,
.sidebar-nav::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
