/**
 * Coyote Conference Call - Modern Design System
 * Refined Modernism with Glassmorphism & Advanced Interactions
 * Production-Grade, Accessible, Responsive
 */

/* ============================================================================
   1. DESIGN TOKENS & FOUNDATIONS
   ============================================================================ */

:root {
    /* ---- Brand Color System ---- */
    --color-primary: #0f766e;
    --color-primary-light: #14b8a6;
    --color-primary-lighter: #2dd4bf;
    --color-primary-dark: #134e4a;
    --color-primary-darker: #0d3d39;
    --color-primary-rgb: 15, 118, 110;

    --color-accent: #f59e0b;
    --color-accent-light: #fbbf24;
    --color-accent-dark: #d97706;

    --color-success: #10b981;
    --color-success-light: #6ee7b7;
    --color-warning: #f97316;
    --color-danger: #ef4444;
    --color-info: #3b82f6;

    /* ---- Neutral Scale - Dark Mode Grays (Light for visibility) ---- */
    --color-gray-50: #ffffff;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #ffffff;

    /* ---- Surfaces & Backgrounds - Dark Mode ---- */
    --surface-primary: #0f172a;
    --surface-secondary: #1e293b;
    --surface-tertiary: #334155;
    --surface-overlay: rgba(15, 23, 42, 0.9);
    --surface-overlay-strong: rgba(15, 23, 42, 0.95);
    --surface-glass: rgba(30, 41, 59, 0.4);

    /* ---- Dark Mode Surfaces ---- */
    --surface-dark-primary: #0f172a;
    --surface-dark-secondary: #1e293b;
    --surface-dark-tertiary: #334155;
    --surface-dark-overlay: rgba(15, 23, 42, 0.9);
    --surface-dark-glass: rgba(30, 41, 59, 0.4);

    /* ---- Typography ---- */
    --font-display: 'Sora', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Lexend', -apple-system, 'Segoe UI', BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Roboto Mono', 'SF Mono', monospace;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    /* ---- Spacing System ---- */
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 1.75rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* ---- Shadows ---- */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);

    /* ---- Shadows for Glass Effect ---- */
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-glass-hover: 0 12px 48px rgba(0, 0, 0, 0.12);

    /* ---- Borders & Radius ---- */
    --radius-none: 0;
    --radius-xs: 0.25rem;
    --radius-sm: 0.375rem;
    --radius-base: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    --border-thin: 1px;
    --border-default: 2px;
    --border-thick: 3px;

    /* ---- Transitions ---- */
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 500ms;
    --easing-ease-in: cubic-bezier(0.4, 0, 1, 1);
    --easing-ease-out: cubic-bezier(0, 0, 0.2, 1);
    --easing-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ---- Z-Index ---- */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1050;
    --z-tooltip: 1070;

    /* ---- Layout ---- */
    --sidebar-width: 280px;
    --sidebar-width-collapsed: 80px;
    --header-height: 64px;
    --mobile-nav-height: 72px;

    /* ---- Content ---- */
    --content-max-width: 1400px;
}

/* Dark Mode */

/* ============================================================================
   2. RESET & BASE STYLES
   ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--line-height-normal);
    color: var(--color-gray-700);
    background-color: var(--surface-secondary);
    transition: background-color var(--duration-base) var(--easing-ease-out);
}


/* ============================================================================
   3. TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
}


h1 { font-size: var(--text-4xl); font-weight: 700; }
h2 { font-size: var(--text-3xl); font-weight: 700; }
h3 { font-size: var(--text-2xl); font-weight: 600; color: #ffffff !important; }
h4 { font-size: var(--text-xl); font-weight: 600; }
h5 { font-size: var(--text-lg); font-weight: 600; }
h6 { font-size: var(--text-base); font-weight: 600; }

p {
    margin-bottom: var(--space-4);
    color: var(--color-gray-600);
}


a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--duration-fast) var(--easing-ease-out);
}

a:hover {
    color: var(--color-primary-light);
}

/* ============================================================================
   4. LAYOUT COMPONENTS
   ============================================================================ */

/* Main Layout Container */
.app-container {
    display: flex;
    min-height: 100vh;
    background-color: var(--surface-secondary);
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--surface-primary);
    border-right: 1px solid var(--color-gray-200);
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--space-6);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    transition: all var(--duration-base) var(--easing-ease-out);
    z-index: var(--z-fixed);
}


.sidebar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-8);
    padding: var(--space-4) 0;
}

.sidebar-brand i {
    font-size: var(--text-2xl);
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.sidebar-nav li {
    position: relative;
}

.sidebar-nav li.sidebar-divider {
    border-top: 1px solid var(--color-gray-200);
    padding-top: var(--space-4);
    margin-top: var(--space-4);
}


.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    color: var(--color-gray-600);
    transition: all var(--duration-fast) var(--easing-ease-out);
    position: relative;
}

.sidebar-nav a:hover {
    background-color: var(--color-primary-light);
    color: white;
    transform: translateX(4px);
}

.sidebar-nav a.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.sidebar-nav a.active::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: white;
    border-radius: var(--radius-full);
}

.sidebar-spacer {
    flex-grow: 1;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-primary);
    border-top: 1px solid var(--color-gray-200);
    height: var(--mobile-nav-height);
    z-index: var(--z-sticky);
}

@media (max-width: 768px) {
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: var(--space-2);
    color: var(--color-gray-500);
    font-size: var(--text-xs);
    transition: all var(--duration-fast) var(--easing-ease-out);
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.mobile-nav-link.active {
    color: var(--color-primary);
}

.mobile-nav-link i {
    font-size: var(--text-2xl);
}

/* Main Content Wrapper */
.main-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left var(--duration-base) var(--easing-ease-out);
}

@media (max-width: 768px) {
}

/* Page Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-6);
    background: var(--surface-primary);
    border-bottom: 1px solid var(--color-gray-200);
    height: auto;
    min-height: var(--header-height);
}


@media (max-width: 768px) {
}

.page-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-gray-50);
    margin: 0;
}

@media (max-width: 768px) {
}

/* Main Content Area */
.main-content {
    flex: 1;
    padding: var(--space-6);
    overflow-y: auto;
}

@media (max-width: 768px) {
}

/* Footer */
.app-footer {
    padding: var(--space-6);
    text-align: center;
    color: var(--color-gray-500);
    border-top: 1px solid var(--color-gray-200);
    font-size: var(--text-sm);
}


/* ============================================================================
   5. CARD COMPONENTS
   ============================================================================ */

.card {
    background: var(--surface-dark-secondary);
    border-color: var(--color-gray-300);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--duration-base) var(--easing-ease-out);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-glass);
}


.card.glass:hover {
    box-shadow: var(--shadow-glass-hover);
    background: rgba(255, 255, 255, 0.35);
}

/* ============================================================================
   6. STAT CARDS
   ============================================================================ */

.stat-card {
    background: var(--surface-primary);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-base) var(--easing-ease-out);
    box-shadow: var(--shadow-sm);
}


.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--stat-color, var(--color-primary)) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card-icon {
    font-size: var(--text-3xl);
    color: var(--stat-color, var(--color-primary));
    margin-bottom: var(--space-4);
    display: inline-block;
}

.stat-card-label {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.stat-card-value {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-gray-900);
    font-family: var(--font-mono);
    margin-bottom: var(--space-3);
}


.stat-card-change {
    font-size: var(--text-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.stat-card-change.positive {
    color: var(--color-success);
}

.stat-card-change.negative {
    color: var(--color-danger);
}

/* ============================================================================
   7. DATA TABLES
   ============================================================================ */

.table-responsive-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-primary);
}


.table thead {
    background-color: var(--surface-dark-tertiary);
    border-bottom-color: var(--color-gray-300);
}

.table th {
    padding: var(--space-4) var(--space-6);
    text-align: left;
    font-weight: 600;
    color: var(--color-gray-100);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--surface-dark-secondary);
}

.table td {
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--color-gray-200);
    color: var(--color-gray-600);
    font-size: var(--text-sm);
}


.table tbody tr {
    transition: all var(--duration-fast) var(--easing-ease-out);
}

.table tbody tr:hover {
    background-color: var(--color-gray-50);
}


.table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================================================
   8. BUTTONS
   ============================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-fast) var(--easing-ease-out);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width var(--duration-fast) var(--easing-ease-out),
                height var(--duration-fast) var(--easing-ease-out);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
    background: var(--surface-tertiary);
    color: var(--color-gray-700);
    border: 1px solid var(--color-gray-300);
}


.btn-secondary:hover {
    background: var(--color-gray-200);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* Danger Button */
.btn-danger {
    background: var(--color-danger);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Size Variants */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn-lg {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-lg);
}

.btn-block {
    width: 100%;
}

/* ============================================================================
   9. FORMS
   ============================================================================ */

.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
    color: var(--color-gray-700);
    font-size: var(--text-sm);
}


.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    background: var(--surface-primary);
    color: var(--color-gray-900);
    transition: all var(--duration-fast) var(--easing-ease-out);
}


.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.form-control::placeholder {
    color: var(--color-gray-400);
}

.form-control.error {
    border-color: var(--color-danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-text {
    display: block;
    margin-top: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.form-text.error {
    color: var(--color-danger);
}

/* ============================================================================
   10. BADGES & LABELS
   ============================================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-primary);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.badge-warning {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-warning);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

.badge-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-info);
}

/* ============================================================================
   11. ANIMATIONS & TRANSITIONS
   ============================================================================ */

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

@keyframes slideInLeft {
}

@keyframes slideInRight {
}

@keyframes scaleIn {
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-fade-in {
    animation: fadeIn var(--duration-base) var(--easing-ease-out);
}

.animate-slide-left {
    animation: slideInLeft var(--duration-base) var(--easing-ease-out);
}

.animate-slide-right {
    animation: slideInRight var(--duration-base) var(--easing-ease-out);
}

.animate-scale-in {
    animation: scaleIn var(--duration-base) var(--easing-ease-out);
}

.animate-pulse {
    animation: pulse 2s var(--easing-ease-in-out) infinite;
}

/* Staggered Animation */
.animate-stagger > * {
    animation: fadeIn var(--duration-base) var(--easing-ease-out);
}

.animate-stagger > :nth-child(1) { animation-delay: 0ms; }
.animate-stagger > :nth-child(2) { animation-delay: 75ms; }
.animate-stagger > :nth-child(3) { animation-delay: 150ms; }
.animate-stagger > :nth-child(4) { animation-delay: 225ms; }
.animate-stagger > :nth-child(5) { animation-delay: 300ms; }
.animate-stagger > :nth-child(n+6) { animation-delay: 375ms; }

/* ============================================================================
   12. GRID & LAYOUT UTILITIES
   ============================================================================ */

.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3,
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }

/* ============================================================================
   13. UTILITY CLASSES
   ============================================================================ */

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-muted {
    color: var(--color-gray-500);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-xs {
    font-size: var(--text-xs);
}

.font-mono {
    font-family: var(--font-mono);
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.rounded {
    border-radius: var(--radius-lg);
}

.rounded-full {
    border-radius: var(--radius-full);
}

.shadow {
    box-shadow: var(--shadow-md);
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.cursor-pointer {
    cursor: pointer;
}

.max-w-full {
    max-width: 100%;
}

.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

.desktop-only {
    display: block !important;
}

@media (max-width: 768px) {

    .mobile-only {
        display: block !important;
    }
}

/* ============================================================================
   14. SCROLLBAR STYLING
   ============================================================================ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface-tertiary);
}


::-webkit-scrollbar-thumb {
    background: var(--color-gray-400);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-500);
}

/* ============================================================================
   15. RESPONSIVE UTILITIES
   ============================================================================ */

@media (max-width: 768px) {
    .sidebar-width {
        --sidebar-width: 0;
    }



}

/* Prefer Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
