/* ===== Базовые сбросы и переменные ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-50: #f0f9ff;
    --brand-100: #e0f2fe;
    --brand-500: #0ea5e9;
    --brand-600: #0284c7;
    --brand-800: #075985;
    --brand-900: #0c4a6e;
    --accent-500: #f59e0b;
    --accent-600: #d97706;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-100: #dcfce7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-900);
}

/* ===== Обертка сайта ===== */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}

/* ===== Sidebar навигация ===== */
.sidebar {
    background-color: var(--brand-900);
    color: white;
    flex-shrink: 0;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .sidebar {
        width: 288px;
        position: sticky;
        top: 0;
        height: 100vh;
    }
}

.sidebar-inner {
    padding: 1.5rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-title {
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.logo-subtitle {
    color: var(--brand-100);
    font-size: 0.875rem;
    opacity: 0.8;
}

.guide-badge {
    background-color: var(--brand-800);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(14, 165, 233, 0.5);
}

.guide-label {
    font-size: 0.75rem;
    color: var(--brand-100);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.guide-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-left: 4px solid transparent;
    font-weight: 500;
    font-size: 0.875rem;
}

.nav-link:hover {
    background-color: var(--brand-800);
    color: white;
}

.nav-menu li:not(.nav-highlight) .nav-link.active {
    background-color: var(--brand-800);
    border-left-color: white;
    color: white;
}

.nav-highlight {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--brand-800);
}

.nav-link-special {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--accent-500);
    font-weight: 600;
}

.nav-link-special:hover {
    background-color: rgba(245, 158, 11, 0.3);
}

/* ===== Основной контент ===== */
.main-content {
    flex: 1;
    padding: 1.5rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .main-content {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .main-content {
        padding: 3rem;
    }
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* ===== Секции ===== */
.scroll-mt-10 {
    scroll-margin-top: 2.5rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 48rem;
}

/* ===== Карточки ===== */
.card-intro {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-200);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .card-intro {
        padding: 2.5rem;
    }
}

.card-intro-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: var(--brand-50);
    border-radius: 50%;
    transform: translateY(-50%) translateX(33%);
    filter: blur(64px);
    opacity: 0.6;
}

.card-intro-content {
    position: relative;
    z-index: 10;
}

.badge-green {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--green-100);
    color: #166534;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 1.5rem;
}

.intro-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .intro-title {
        font-size: 3rem;
    }
}

.intro-text {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.625;
    max-width: 48rem;
}

.key-principle {
    background-color: var(--brand-50);
    border-left: 4px solid var(--brand-500);
    padding: 1.5rem;
    border-radius: 0.75rem;
    max-width: 56rem;
}

.key-principle-title {
    font-weight: 700;
    color: var(--brand-900);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.key-principle-text {
    color: rgba(12, 74, 110, 0.9);
    line-height: 1.625;
}

/* ===== Сетки ===== */
.grid-2cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .grid-2cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-3cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-2cols-small {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid-2cols-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-white {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-200);
    transition: box-shadow 0.2s;
}

.card-white:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-white.no-padding {
    padding: 0;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.bg-brand-light {
    background-color: var(--brand-100);
    color: var(--brand-600);
}

.bg-accent-light {
    background-color: #fed7aa;
    color: var(--accent-600);
}

.card-note {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}

.info-tag {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background-color: var(--slate-50);
    border: 1px solid var(--slate-100);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--slate-700);
    line-height: 1.4;
}

.info-tag-icon {
    font-size: 1.5rem;
    margin-top: 0.125rem;
}

.col-span-2 {
    grid-column: span 2;
}

.business-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.business-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.business-item:hover {
    background-color: var(--slate-50);
}

.business-icon {
    font-size: 1.5rem;
    background-color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid var(--slate-100);
}

/* ===== Демо зона ===== */
.demo-header {
    border-bottom: 1px solid var(--slate-200);
    background-color: var(--slate-50);
    padding: 1.5rem;
    text-align: center;
}

.demo-header-text {
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 1rem;
}

.demo-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.btn-correct, .btn-wrong {
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-correct {
    background-color: var(--green-600);
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-correct:hover {
    background-color: #15803d;
}

.btn-wrong {
    background-color: var(--slate-200);
    color: var(--slate-700);
}

.btn-wrong:hover {
    background-color: var(--slate-300);
}

.demo-body {
    padding: 2rem;
}

@media (min-width: 1024px) {
    .demo-body {
        padding: 3rem;
    }
}

.demo-zone {
    margin: 0 auto;
    max-width: 56rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.demo-explanation {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 56rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    line-height: 1.625;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Дополнительные стили для демо-зоны (замена Tailwind) */
.demo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .demo-container {
        flex-direction: row;
        gap: 2rem;
    }
}

.demo-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-card-header {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
}

.demo-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.demo-icon {
    font-size: 2.5rem;
    background-color: var(--brand-50);
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.demo-text-stack {
    display: flex;
    flex-direction: column;
}

.demo-text-main {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.025em;
}

.demo-text-sub {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-500);
    letter-spacing: 0.05em;
}

.demo-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-inline .demo-text-main {
    font-size: 1.5rem;
}

.demo-inline .demo-text-sub {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Стили для неправильных вариантов */
.demo-card-wrong .demo-card-header {
    background-color: #fee2e2;
    color: var(--red-600);
}

.demo-card-wrong .demo-icon {
    background-color: var(--slate-100);
    filter: grayscale(1);
    opacity: 0.7;
}

.demo-card-wrong .demo-text-stack {
    align-items: flex-end;
}

.demo-card-wrong .demo-text-stack .demo-text-main {
    font-size: 1.5rem;
}

.demo-card-wrong .demo-inline .demo-text-main {
    font-weight: 300;
    color: var(--slate-400);
}

.demo-card-wrong .demo-inline .demo-text-sub {
    font-weight: 800;
}

.demo-explanation-correct {
    background-color: #dcfce7;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.demo-explanation-wrong {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* ===== Карточки исключений ===== */
.card-exception {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
}

.exception-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--slate-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.exception-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.exception-text {
    color: var(--slate-600);
    font-size: 0.875rem;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.exception-example {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
}

.exception-example-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 0.25rem;
}

.exception-example-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-800);
}

.exception-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-600);
    text-decoration: none;
}

.exception-link:hover {
    text-decoration: underline;
}

/* ===== Карточки адаптации ===== */
.card-adaptation {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.card-adaptation:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-adaptation-header {
    background-color: var(--slate-50);
    padding: 1rem;
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-adaptation-body {
    padding: 1.5rem;
}

.adaptation-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand-900);
    margin-bottom: 0.75rem;
}

.adaptation-text {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.example-compare {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.example-bad {
    background-color: #fef2f2;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #fee2e2;
    opacity: 0.7;
}

.example-label-bad {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.example-text-bad {
    color: var(--slate-700);
    font-weight: 500;
}

.line-through {
    text-decoration: line-through;
    text-decoration-color: var(--red-500);
    text-decoration-thickness: 2px;
}

.example-arrow {
    text-align: center;
    color: var(--slate-300);
}

.example-good {
    background-color: var(--green-100);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #bbf7d0;
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.example-label-good {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.example-text-good {
    color: var(--slate-900);
    font-weight: 700;
    font-size: 1.125rem;
}

.double-text {
    display: flex;
    flex-direction: column;
}

.double-sub {
    color: var(--slate-500);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* ===== Статистика штрафов ===== */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: linear-gradient(to bottom right, #fef2f2, #fff7ed);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #fee2e2;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.stat-icon {
    padding: 0.5rem;
    background-color: #fee2e2;
    color: var(--red-600);
    border-radius: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #991b1b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--red-600);
    line-height: 1.2;
}

.stat-number-small {
    font-size: 1.5rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: rgba(220, 38, 38, 0.8);
    margin-top: 0.5rem;
}

.fines-chart-title {
    font-weight: 700;
    color: var(--slate-900);
    text-align: center;
    margin-bottom: 1rem;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    min-height: 450px;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-200);
}

@media (min-width: 768px) {
    .chart-container {
        min-height: 480px;
    }
}

.warning-note {
    margin-top: 1.5rem;
    background-color: var(--slate-50);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--slate-200);
    font-size: 0.875rem;
    color: var(--slate-600);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.warning-icon {
    color: var(--accent-500);
    margin-top: 0.125rem;
}

/* ===== CTA секция ===== */
.cta-card {
    background-color: var(--brand-900);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .cta-card {
        padding: 3rem;
    }
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAzNHYtNGgtdjRoLThoNHY0aDR2NGg4djRoNHYtOGg4di00aDR6IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz48L2c+PC9zdmc+');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-subtitle {
    color: var(--brand-100);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    line-height: 1.625;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.step-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.step-number {
    position: absolute;
    top: -1.25rem;
    left: -1.25rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-500);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--brand-900);
}

.step-number-green {
    background-color: var(--green-500);
}

.step-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.step-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.cta-button-wrapper {
    margin-top: 3rem;
}

.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    background-color: white;
    color: var(--brand-900);
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    font-size: 1.125rem;
}

.cta-button:hover {
    background-color: var(--brand-50);
    transform: scale(1.02);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--slate-900);
    color: var(--slate-400);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid var(--slate-800);
    width: 100%;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-text {
    font-size: 0.85rem;
}

.footer-link {
    color: var(--slate-300);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--accent-500);
    text-decoration: underline;
}

/* ===== Кастомный скроллбар ===== */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--slate-400);
    border-radius: 8px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--slate-500);
}