/*
 * Odextra SaaS Boilerplate — Design System
 * Premium, modern CSS with Bootstrap 5 enhancements
 */

/* ═══════════════════════════════════
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ═══════════════════════════════════ */
:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #eef2ff;
    --primary-rgb: 79, 70, 229;
    --secondary: #7c3aed;
    --secondary-hover: #6d28d9;
    --accent: #06b6d4;
    --success: #059669;
    --success-light: #d1fae5;
    --warning: #d97706;
    --warning-light: #fef3c7;
    --danger: #dc2626;
    --danger-light: #fee2e2;
    --info: #0284c7;
    --info-light: #e0f2fe;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    --sidebar-width: 260px;
    --topbar-height: 64px;
    --transition: all 0.2s ease;
}

/* ═══════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════ */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* ═══════════════════════════════════
   BUTTONS (Bootstrap Override)
   ═══════════════════════════════════ */
.btn {
    font-weight: 500;
    border-radius: var(--radius);
    padding: 8px 18px;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.btn-secondary {
    background: var(--gray-600);
    border-color: var(--gray-600);
}

.btn-secondary:hover {
    background: var(--gray-700);
    border-color: var(--gray-700);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-success {
    background: var(--success);
    border-color: var(--success);
}

.btn-danger {
    background: var(--danger);
    border-color: var(--danger);
}

.btn-warning {
    background: var(--warning);
    border-color: var(--warning);
    color: #fff;
}

.btn-sm {
    padding: 5px 12px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 12px 28px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ═══════════════════════════════════
   FORMS
   ═══════════════════════════════════ */
.form-control,
.form-select {
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
    padding: 9px 14px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-text {
    font-size: 13px;
    color: var(--gray-500);
}

.input-group-text {
    border-radius: var(--radius);
    border-color: var(--gray-300);
    background: var(--gray-50);
}

/* ═══════════════════════════════════
   CARDS
   ═══════════════════════════════════ */
.card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: #fff;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
}

.card-body {
    padding: 20px;
}

/* Stat Cards */
.stat-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: #fff;
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-card .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card .stat-change {
    font-size: 13px;
    font-weight: 600;
}

.stat-card .stat-change.up {
    color: var(--success);
}

.stat-card .stat-change.down {
    color: var(--danger);
}

/* ═══════════════════════════════════
   SIDEBAR LAYOUT
   ═══════════════════════════════════ */
.app-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--gray-900);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar-brand {
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.sidebar-brand .brand-name {
    font-weight: 600;
    font-size: 16px;
}

.sidebar-nav {
    padding: 12px 0;
    flex: 1;
}

.sidebar-section {
    padding: 8px 20px 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    font-weight: 600;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-link.active {
    color: #fff;
    background: rgba(var(--primary-rgb), 0.15);
    border-left-color: var(--primary);
    font-weight: 500;
}

.sidebar-link .nav-icon {
    width: 20px;
    text-align: center;
    font-size: 16px;
    opacity: 0.7;
}

.sidebar-link.active .nav-icon {
    opacity: 1;
}

.sidebar-link .badge {
    margin-left: auto;
    font-size: 11px;
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--gray-500);
}

/* ═══════════════════════════════════
   TOPBAR
   ═══════════════════════════════════ */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: var(--topbar-height);
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-search {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 7px 16px;
    width: 280px;
    font-size: 14px;
    transition: var(--transition);
}

.topbar-search:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
    outline: none;
    width: 340px;
}

.page-content {
    padding: 24px;
    flex: 1;
}

.page-header {
    margin-bottom: 24px;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.page-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin: 4px 0 0;
}

/* ═══════════════════════════════════
   NOTIFICATION BELL
   ═══════════════════════════════════ */
.notification-bell {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.notification-bell:hover {
    background: var(--gray-100);
}

.notification-bell .badge-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
    border: 2px solid #fff;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    display: none;
    z-index: 1001;
}

.notification-dropdown.show {
    display: block;
}

.notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    gap: 12px;
    transition: var(--transition);
}

.notification-item:hover {
    background: var(--gray-50);
}

.notification-item.unread {
    background: var(--primary-light);
}

/* ═══════════════════════════════════
   TABLES / DATA GRID
   ═══════════════════════════════════ */
.table {
    font-size: 14px;
}

.table thead th {
    background: var(--gray-50);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    border-bottom: 2px solid var(--gray-200);
    padding: 10px 14px;
    white-space: nowrap;
}

.table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}

.table tbody tr:hover {
    background: var(--gray-50);
}

.table .row-actions {
    display: flex;
    gap: 6px;
}

.table .row-actions .btn {
    padding: 3px 8px;
    font-size: 12px;
}

/* Checkboxes in tables */
.table .form-check-input {
    cursor: pointer;
}

/* ═══════════════════════════════════
   BADGES & PILLS
   ═══════════════════════════════════ */
.badge {
    font-weight: 500;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-2xl);
}

.badge-status {
    font-size: 11px;
    padding: 3px 8px;
}

.badge-active,
.badge-open {
    background: var(--success-light);
    color: var(--success);
}

.badge-pending {
    background: var(--warning-light);
    color: var(--warning);
}

.badge-danger,
.badge-closed,
.badge-suspended {
    background: var(--danger-light);
    color: var(--danger);
}

.badge-info {
    background: var(--info-light);
    color: var(--info);
}

.badge-neutral {
    background: var(--gray-100);
    color: var(--gray-600);
}

/* ═══════════════════════════════════
   MODALS
   ═══════════════════════════════════ */
.modal-content {
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 24px;
}

.modal-header .modal-title {
    font-weight: 600;
    font-size: 18px;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 16px 24px;
}

/* ═══════════════════════════════════
   ALERTS
   ═══════════════════════════════════ */
.alert {
    border-radius: var(--radius);
    font-size: 14px;
    border: none;
    padding: 14px 18px;
}

.alert-success {
    background: var(--success-light);
    color: #065f46;
}

.alert-danger {
    background: var(--danger-light);
    color: #991b1b;
}

.alert-warning {
    background: var(--warning-light);
    color: #92400e;
}

.alert-info {
    background: var(--info-light);
    color: #075985;
}

/* ═══════════════════════════════════
   PAGINATION
   ═══════════════════════════════════ */
.pagination .page-link {
    border-radius: var(--radius-sm);
    margin: 0 2px;
    font-size: 14px;
    border-color: var(--gray-200);
    color: var(--gray-600);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* ═══════════════════════════════════
   IMPERSONATION BANNER
   ═══════════════════════════════════ */
.impersonation-banner {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.impersonation-banner a {
    color: #fff;
    text-decoration: underline;
}

/* ═══════════════════════════════════
   DEMO MODE BANNER
   ═══════════════════════════════════ */
.demo-banner {
    background: linear-gradient(135deg, var(--info), #0369a1);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

/* ═══════════════════════════════════
   LANDING PAGE
   ═══════════════════════════════════ */
.landing-nav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.landing-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 15px;
    padding: 20px 16px;
}

.landing-nav .nav-link:hover {
    color: #fff;
}

.landing-nav .brand {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(var(--primary-rgb), 0.15), transparent 60%),
        radial-gradient(ellipse at 70% 100%, rgba(124, 58, 237, 0.1), transparent 60%);
}

.hero-section h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.hero-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
}

.hero-section .btn-hero {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--gray-900);
    color: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 48px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), rgba(var(--primary-rgb), 0.12));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Pricing */
.pricing-card {
    border-radius: var(--radius-xl);
    padding: 32px;
    background: #fff;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-card .feature-list {
    list-style: none;
    padding: 0;
}

.pricing-card .feature-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card .feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* Footer */
.landing-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

.landing-footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.landing-footer a {
    color: var(--gray-400);
    font-size: 14px;
}

.landing-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    margin-top: 40px;
}

/* ═══════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

.auth-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 440px;
    padding: 40px;
}

.auth-card .auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth-card .auth-logo h2 {
    font-weight: 700;
    margin: 8px 0 0;
}

.auth-card h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════
   AD SLOT
   ═══════════════════════════════════ */
.ad-slot {
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    margin-bottom: 16px;
}

.ad-slot img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ad-slot-label {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ═══════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════ */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: none;
    font-size: 14px;
    min-width: 300px;
}

/* ═══════════════════════════════════
   DATA GRID TOOLBAR
   ═══════════════════════════════════ */
.grid-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.grid-toolbar .grid-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.grid-toolbar .grid-actions {
    display: flex;
    gap: 8px;
}

.grid-search {
    width: 250px;
}

/* Bulk action bar */
.bulk-bar {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.bulk-bar.visible {
    display: flex;
}

.bulk-bar .btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .topbar-search {
        width: 200px;
    }

    .topbar-search:focus {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 50px;
    }

    .section {
        padding: 50px 0;
    }

    .page-content {
        padding: 16px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* ═══════════════════════════════════
   UTILITIES
   ═══════════════════════════════════ */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glow {
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.15);
}

.animate-fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--gray-300);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.avatar-sm {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.avatar-lg {
    width: 48px;
    height: 48px;
    font-size: 18px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.empty-state .icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state h5 {
    color: var(--gray-700);
    font-weight: 600;
}

.divider {
    border-top: 1px solid var(--gray-200);
    margin: 24px 0;
}

.scroll-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}