/* SocialPilot Pro - Enhanced Dark Theme v2.5 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-card: #1c2128;
    --bg-hover: #21262d;
    --bg-input: #0d1117;
    --border-color: #30363d;
    --border-light: #21262d;
    --text-primary: #e6edf3;
    --text-secondary: #e8eaed;
    --text-muted: #6e7681;
    --accent-blue: #4f9cf9;
    --accent-blue-dark: #1f6feb;
    --accent-green: #3fb950;
    --accent-red: #f85149;
    --accent-orange: #d29922;
    --accent-purple: #a371f7;
    --accent-cyan: #39c5cf;
    --accent-pink: #f778ba;
    --sidebar-width: 240px;
    --topbar-height: 56px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.6);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ===================== SIDEBAR ===================== */
.sidebar {
    position: fixed;
    left: 0; top: 0; bottom: 0;
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.sidebar.collapsed { transform: translateX(-100%); }

.sidebar-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: var(--topbar-height);
}

.sidebar-logo {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(79, 156, 249, 0.3);
}

.sidebar-header h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.sidebar-header small {
    font-size: 11px;
    color: var(--text-muted);
}

.sidebar-nav {
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
}

.sidebar-section-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 12px 20px 4px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s ease;
    border-left: 2px solid transparent;
    font-size: 13.5px;
    font-weight: 400;
    border-radius: 0;
    margin: 1px 0;
}

.sidebar-nav .nav-link:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-left-color: var(--border-color);
}

.sidebar-nav .nav-link.active {
    background: rgba(79, 156, 249, 0.08);
    color: var(--accent-blue);
    border-left-color: var(--accent-blue);
    font-weight: 500;
}

.sidebar-nav .nav-link i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    flex-shrink: 0;
}

.sidebar-nav .nav-link.text-danger { color: var(--accent-red) !important; }
.sidebar-nav .nav-link.text-danger:hover { background: rgba(248, 81, 73, 0.08); }

.sidebar-footer {
    border-top: 1px solid var(--border-color);
    padding: 12px 16px;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-md);
    transition: background 0.15s;
    cursor: pointer;
}

.sidebar-user:hover { background: var(--bg-hover); }

.user-avatar {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.user-info .user-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.user-info .user-email {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

/* ===================== MAIN CONTENT ===================== */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.main-content.expanded { margin-left: 0; }

.content-wrapper {
    padding: 24px;
    flex: 1;
}

/* ===================== TOPBAR ===================== */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: var(--topbar-height);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-left { display: flex; align-items: center; gap: 12px; }
.topbar-right { display: flex; align-items: center; gap: 8px; }

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: all 0.15s;
    display: flex;
    align-items: center;
}

.sidebar-toggle:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 500;
}

.topbar-badge.online {
    background: rgba(63, 185, 80, 0.12);
    color: var(--accent-green);
    border: 1px solid rgba(63, 185, 80, 0.2);
}

.topbar-badge.api {
    background: rgba(79, 156, 249, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(79, 156, 249, 0.2);
}

.topbar-icon-btn {
    width: 34px; height: 34px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    font-size: 14px;
}

.topbar-icon-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

/* ===================== PAGE HEADER ===================== */
.page-header {
    margin-bottom: 24px;
}

.page-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 13.5px;
}

/* ===================== CARDS ===================== */
.card-dark {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    transition: border-color 0.15s;
}

.card-dark:hover { border-color: var(--border-light); }

.card-dark .card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-dark .card-title i { font-size: 14px; }

/* ===================== STAT CARDS ===================== */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--stat-color, var(--accent-blue));
    opacity: 0;
    transition: opacity 0.2s;
}

.stat-card:hover { transform: translateY(-2px); border-color: var(--text-muted); box-shadow: var(--shadow-md); }
.stat-card:hover::before { opacity: 1; }

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

.stat-card-content .stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.stat-card-content .stat-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-card-content .stat-change {
    font-size: 11.5px;
    margin-top: 4px;
}

.stat-icon-wrap {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* ===================== GETTING STARTED CARD ===================== */
.getting-started-card {
    background: linear-gradient(135deg, rgba(79, 156, 249, 0.06) 0%, rgba(163, 113, 247, 0.06) 100%);
    border: 1px solid rgba(79, 156, 249, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.getting-started-card .gs-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.getting-started-card .gs-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.gs-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: all 0.15s;
}

.gs-step:hover { background: rgba(255,255,255,0.05); border-color: var(--text-muted); }

.gs-step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(79, 156, 249, 0.15);
    border: 1px solid rgba(79, 156, 249, 0.3);
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gs-step-content { flex: 1; }
.gs-step-content h6 { font-size: 13.5px; font-weight: 600; color: var(--text-primary); margin-bottom: 3px; }
.gs-step-content p { font-size: 12px; color: var(--text-secondary); margin: 0; }

/* ===================== QUICK ACTION BUTTONS ===================== */
.quick-actions-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
}

.quick-btn:hover {
    background: var(--bg-hover);
    border-color: var(--text-muted);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.quick-btn.primary {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.quick-btn.primary:hover {
    background: var(--accent-blue-dark);
    border-color: var(--accent-blue-dark);
    color: white;
}

/* ===================== FORMS ===================== */
.form-control-dark, .form-select-dark {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-md) !important;
    padding: 9px 13px !important;
    font-size: 13.5px !important;
    transition: border-color 0.15s, box-shadow 0.15s !important;
}

.form-control-dark:focus, .form-select-dark:focus {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 3px rgba(79, 156, 249, 0.15) !important;
    outline: none !important;
}

.form-control-dark::placeholder { color: var(--text-muted) !important; }

.form-label-dark {
    color: var(--text-secondary);
    font-size: 12.5px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

/* ===================== BUTTONS ===================== */
.btn-accent {
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.15s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-accent:hover {
    background: var(--accent-blue-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 156, 249, 0.3);
}

.btn-dark-custom {
    background: var(--bg-hover);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 9px 18px;
    font-size: 13.5px;
    transition: all 0.15s;
}

.btn-dark-custom:hover {
    background: var(--border-color);
    color: var(--text-primary);
    border-color: var(--text-muted);
}

/* ===================== TABLES ===================== */
.table-dark-custom { color: var(--text-primary); border-collapse: separate; border-spacing: 0; }

.table-dark-custom thead th {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--text-muted);
    padding: 10px 14px;
    font-weight: 600;
    white-space: nowrap;
}

.table-dark-custom tbody td {
    border-bottom: 1px solid var(--border-light);
    padding: 11px 14px;
    vertical-align: middle;
    font-size: 13.5px;
}

.table-dark-custom tbody tr:hover { background: rgba(255,255,255,0.02); }
.table-dark-custom tbody tr:last-child td { border-bottom: none; }

/* ===================== TABS ===================== */
.nav-tabs-dark { border-bottom: 1px solid var(--border-color); gap: 0; }

.nav-tabs-dark .nav-link {
    color: var(--text-secondary);
    border: none;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    background: none;
    border-radius: 0;
    transition: all 0.15s;
    margin-bottom: -1px;
}

.nav-tabs-dark .nav-link:hover { color: var(--text-primary); }
.nav-tabs-dark .nav-link.active { color: var(--accent-blue); border-bottom-color: var(--accent-blue); background: none; }

/* ===================== LOG CONSOLE ===================== */
.log-console {
    background: #090d12;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    max-height: 380px;
    overflow-y: auto;
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 12.5px;
    line-height: 1.6;
}

.log-entry { padding: 2px 0; }
.log-entry.success { color: var(--accent-green); }
.log-entry.error { color: var(--accent-red); }
.log-entry.warning { color: var(--accent-orange); }
.log-entry.info { color: var(--accent-cyan); }
.log-time { color: var(--text-muted); margin-right: 8px; font-size: 11px; }

/* ===================== PROGRESS ===================== */
.progress-dark {
    background: var(--bg-primary);
    border-radius: 20px;
    height: 6px;
    overflow: hidden;
}

.progress-dark .progress-bar {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: 20px;
    transition: width 0.4s ease;
}

/* ===================== BADGES ===================== */
.badge-method { font-size: 10.5px; padding: 3px 8px; border-radius: 4px; font-weight: 500; }

.badge-success-soft { background: rgba(63, 185, 80, 0.12); color: var(--accent-green); border: 1px solid rgba(63, 185, 80, 0.2); }
.badge-danger-soft { background: rgba(248, 81, 73, 0.12); color: var(--accent-red); border: 1px solid rgba(248, 81, 73, 0.2); }
.badge-info-soft { background: rgba(79, 156, 249, 0.12); color: var(--accent-blue); border: 1px solid rgba(79, 156, 249, 0.2); }
.badge-warning-soft { background: rgba(210, 153, 34, 0.12); color: var(--accent-orange); border: 1px solid rgba(210, 153, 34, 0.2); }
.badge-purple-soft { background: rgba(163, 113, 247, 0.12); color: var(--accent-purple); border: 1px solid rgba(163, 113, 247, 0.2); }

/* ===================== SPEED SELECTOR ===================== */
.speed-option {
    background: var(--bg-input);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
}

.speed-option:hover { border-color: var(--accent-blue); background: rgba(79, 156, 249, 0.04); }
.speed-option.selected { border-color: var(--accent-blue); background: rgba(79, 156, 249, 0.08); }
.speed-option .speed-name { font-weight: 600; font-size: 13px; color: var(--text-primary); }
.speed-option .speed-risk { font-size: 11px; margin-top: 3px; color: var(--text-muted); }

/* ===================== AUTH PAGE ===================== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(79, 156, 249, 0.08) 0%, var(--bg-primary) 60%);
    padding: 20px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 36px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.auth-logo {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(79, 156, 249, 0.3);
}

.auth-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* ===================== STATUS INDICATORS ===================== */
.status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.status-dot.online { background: var(--accent-green); box-shadow: 0 0 6px rgba(63, 185, 80, 0.6); }
.status-dot.offline { background: var(--accent-red); }
.status-dot.warning { background: var(--accent-orange); }

/* ===================== API STATUS ITEM ===================== */
.api-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
}

.api-status-item:last-child { border-bottom: none; }

.api-status-item .api-name {
    font-size: 13.5px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===================== ACTIVITY FEED ===================== */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
}

.activity-item:last-child { border-bottom: none; }

.activity-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.activity-content .activity-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.activity-content .activity-meta {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* ===================== SECURITY GRID ===================== */
.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    transition: all 0.15s;
}

.security-item:hover { background: rgba(255,255,255,0.04); border-color: var(--border-color); }

.security-item .security-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.security-item .security-label {
    font-size: 11.5px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4px;
}

.security-item .security-status {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-green);
}

/* ===================== ALERT STYLES ===================== */
.alert-dark-warning {
    background: rgba(210, 153, 34, 0.08);
    border: 1px solid rgba(210, 153, 34, 0.2);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 12.5px;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.alert-dark-danger {
    background: rgba(248, 81, 73, 0.08);
    border: 1px solid rgba(248, 81, 73, 0.2);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 12.5px;
    color: var(--accent-red);
    margin-bottom: 8px;
}

/* ===================== DROPDOWN ===================== */
.dropdown-menu-dark-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 4px;
    min-width: 160px;
}

.dropdown-menu-dark-custom .dropdown-item {
    color: var(--text-secondary);
    font-size: 13px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.1s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-menu-dark-custom .dropdown-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.dropdown-menu-dark-custom .dropdown-divider {
    border-color: var(--border-color);
    margin: 4px 0;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.fade-in { animation: fadeInUp 0.3s ease forwards; }
.pulse { animation: pulse-dot 2s ease infinite; }

/* ===================== TOAST ===================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===================== EMPTY STATE ===================== */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-state i { font-size: 36px; margin-bottom: 12px; opacity: 0.4; display: block; }
.empty-state p { font-size: 13.5px; margin: 0; }

/* ===================== DIVIDER ===================== */
.divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 16px 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.show { transform: translateX(0); }
    .main-content { margin-left: 0 !important; }
    .content-wrapper { padding: 16px; }
    .stat-card-content .stat-value { font-size: 22px; }
}

/* ===================== UTILITY ===================== */
.text-accent-blue { color: var(--accent-blue) !important; }
.text-accent-green { color: var(--accent-green) !important; }
.text-accent-red { color: var(--accent-red) !important; }
.text-accent-orange { color: var(--accent-orange) !important; }
.text-accent-purple { color: var(--accent-purple) !important; }
.text-accent-cyan { color: var(--accent-cyan) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.text-secondary-custom { color: var(--text-secondary) !important; }
.border-custom { border-color: var(--border-color) !important; }
.bg-card { background: var(--bg-card) !important; }
.bg-hover { background: var(--bg-hover) !important; }
.rounded-custom { border-radius: var(--radius-md) !important; }
.avatar-sm { width: 32px; height: 32px; font-size: 13px; }
