/**
 * MARCAR Custom Styles
 * Uses CSS variables from config for theming
 */

/* Desktop scaling - increase base font size by 30% */
@media (min-width: 1024px) {
    html {
        font-size: 20px; /* Default 16px * 1.25 = 20px (25% increase for readability) */
    }
}

@media (min-width: 1440px) {
    html {
        font-size: 21px; /* 16px * 1.31 ≈ 21px (30% increase for large screens) */
    }

    /* Increase sidebar widths for large screens */
    aside.w-\[300px\] {
        width: 380px !important;
    }
    aside.w-\[320px\] {
        width: 400px !important;
    }

    /* Increase main container max-width */
    .max-w-\[1600px\] {
        max-width: 2000px !important;
    }

    /* Smooth brand thumbnails - reduce pixelation */
    #menu-brands button img {
        image-rendering: auto;
        filter: blur(0.3px);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Left panel - Live monitor feed: increase font sizes */
    #desktop-feed-container .feed-item-enter {
        font-size: 12px !important;
    }
    #desktop-feed-container .feed-item-enter .text-slate-200 {
        font-size: 13px !important;
    }
    #desktop-feed-container .feed-item-enter .text-slate-500 {
        font-size: 11px !important;
    }
    #desktop-feed-container .feed-item-enter .text-\[9px\] {
        font-size: 11px !important;
    }

    /* Right panel - Similar cars: increase font sizes */
    #similar-cars-container .text-\[10px\] {
        font-size: 12px !important;
    }
    #similar-cars-container .text-\[9px\] {
        font-size: 11px !important;
    }
}

/* Prevent horizontal scroll on mobile - comprehensive fix */
html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Ensure main wrapper doesn't cause overflow */
main, section, header, footer, nav, aside {
    max-width: 100vw;
    overflow-x: clip;
}

/* Fix for elements with translate animations causing overflow */
.translate-x-full,
.-translate-x-full,
[class*="translate-x"] {
    backface-visibility: hidden;
}

/* Base body styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

/* Grid pattern background */
.bg-grid-pattern {
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Glass morphism panels */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.glass-sidebar {
    background: var(--bg-sidebar);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Navigation button active state */
.nav-btn-active {
    border-color: var(--accent) !important;
    transform: scale(0.98);
    box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.3);
}

/* Scanline animation effect */
.scanline {
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(var(--accent-rgb), 0.1), transparent);
    position: absolute;
    z-index: 10;
    animation: scan 3s linear infinite;
    pointer-events: none;
}

/* Input error state */
.input-error {
    border-color: #ef4444 !important;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom scrollbar styling */
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

*::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Firefox scrollbar */
html, body, div {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--bg-primary);
}

/* Range input styling */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: -6px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: var(--scrollbar-thumb);
    border-radius: 2px;
}

input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: var(--scrollbar-thumb);
    border-radius: 2px;
}

/* Footer hide animation */
.footer-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

/* Fade in up animation */
.fade-in-up {
    animation: fadeInUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing animation */
@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.animate-typing {
    animation: typing 1.4s infinite ease-in-out both;
}

/* Scan animation */
@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Pulse slow animation */
@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.animate-pulse-slow {
    animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Grab scroll cursor */
.grab-scroll {
    cursor: grab;
}

.grab-scroll:active {
    cursor: grabbing;
}

/* Car card hover effect */
.car-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.car-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Button accent styles */
.btn-accent {
    background-color: var(--accent);
    color: white;
    transition: background-color 0.2s ease;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
}

/* Image gallery thumbnail */
.gallery-thumb {
    opacity: 0.6;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
}

/* Messenger buttons */
.btn-whatsapp {
    background-color: #25D366;
}

.btn-telegram {
    background-color: #229ED9;
}

.btn-yandex-maps {
    background-color: #FC3F1D;
}

/* Selection color */
::selection {
    background-color: var(--accent);
    color: white;
}

/* ================================================
   ACCENT COLOR UTILITIES
   Replace hardcoded Tailwind orange-* classes
   ================================================ */

/* Text colors */
.text-accent { color: var(--accent); }
.text-accent-light { color: var(--accent); opacity: 0.8; }

/* Background colors */
.bg-accent { background-color: var(--accent); }
.bg-accent-dark { background-color: var(--accent-hover); }
.bg-accent-gradient { background: linear-gradient(to right, var(--accent-hover), var(--accent)); }
.bg-accent-gradient-dark { background: linear-gradient(to right, var(--accent-hover), color-mix(in srgb, var(--accent-hover) 70%, black)); }

/* Border colors */
.border-accent { border-color: var(--accent); }
.border-accent-30 { border-color: rgba(var(--accent-rgb), 0.3); }
.border-accent-50 { border-color: rgba(var(--accent-rgb), 0.5); }
.border-accent-20 { border-color: rgba(var(--accent-rgb), 0.2); }

/* Shadow */
.shadow-accent { box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.2); }
.shadow-accent-lg { box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.3); }

/* Hover states */
.hover\:text-accent:hover { color: var(--accent); }
.hover\:bg-accent:hover { background-color: var(--accent); }
.hover\:bg-accent-dark:hover { background-color: var(--accent-hover); }
.hover\:border-accent:hover { border-color: var(--accent); }

/* Focus states */
.focus\:border-accent:focus { border-color: var(--accent); }

/* Accent input checkbox/radio */
.accent-themed { accent-color: var(--accent); }

/* Promo panel with accent gradient */
.promo-accent {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.3), rgba(15, 23, 42, 0.4));
    border-color: rgba(var(--accent-rgb), 0.2);
}

/* Accent progress bar */
.progress-accent {
    background-color: var(--accent);
}

/* Button styles with accent */
.btn-accent-primary {
    background: linear-gradient(to right, var(--accent-hover), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.2);
    transition: all 0.2s ease;
}

.btn-accent-primary:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.3);
}

.btn-accent-secondary {
    background-color: var(--accent);
    color: white;
    transition: background-color 0.2s ease;
}

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

/* ================================================
   BRAND NAME TAGS (both themes)
   ================================================ */

/* Dark theme - brand names as compact tags (skip first "ALL" button) */
#menu-brands button:not(:first-child) > div:last-child {
    background: rgba(0, 0, 0, 0.85) !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    font-size: 9px !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    bottom: 4px !important;
}

/* Larger brand buttons on desktop */
@media (min-width: 1024px) {
    #menu-brands button {
        width: 140px !important;
        height: 80px !important;
    }
    #menu-brands button:first-child {
        width: 100px !important;
    }
    #menu-brands button:not(:first-child) > div:last-child {
        font-size: 10px !important;
        padding: 3px 8px !important;
        bottom: 6px !important;
    }
}

/* ================================================
   LIGHT THEME
   Applied when body has .theme-light class
   ================================================ */

/* Light theme base colors */
.theme-light {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-panel: rgba(255, 255, 255, 0.8);
    --bg-sidebar: rgba(248, 250, 252, 0.95);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: rgba(0, 0, 0, 0.08);
    --scrollbar-thumb: #cbd5e1;
}

/* Light theme grid pattern */
.theme-light.bg-grid-pattern {
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
}

/* Light theme glass panels */
.theme-light .glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.theme-light .glass-sidebar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.theme-light .glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Light theme promo block */
.theme-light .promo-accent {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(248, 250, 252, 0.8));
    border: 1px solid rgba(var(--accent-rgb), 0.15);
}

/* Light theme text colors */
.theme-light .text-white {
    color: #1e293b;
}

.theme-light .text-slate-100,
.theme-light .text-slate-200 {
    color: #334155;
}

.theme-light .text-slate-300 {
    color: #475569;
}

.theme-light .text-slate-400 {
    color: #64748b;
}

.theme-light .text-slate-500 {
    color: #94a3b8;
}

/* Light theme backgrounds */
.theme-light .bg-slate-800,
.theme-light .bg-slate-800\/40,
.theme-light .bg-slate-800\/60 {
    background-color: rgba(241, 245, 249, 0.9);
}

.theme-light .bg-slate-900 {
    background-color: #f1f5f9;
}

.theme-light .bg-slate-900\/50 {
    background-color: rgba(241, 245, 249, 0.5);
}

.theme-light .bg-\[\#0f172a\] {
    background-color: #ffffff;
}

.theme-light .bg-\[\#050b14\] {
    background-color: #f1f5f9;
}

.theme-light .bg-\[\#1e293b\]\/60 {
    background-color: rgba(248, 250, 252, 0.8);
}

.theme-light .bg-black\/50,
.theme-light .bg-black\/60 {
    background-color: rgba(255, 255, 255, 0.8);
}

.theme-light .bg-black\/90 {
    background-color: rgba(255, 255, 255, 0.95);
}

.theme-light .bg-white\/5,
.theme-light .bg-white\/20 {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Light theme borders */
.theme-light .border-slate-600,
.theme-light .border-slate-700 {
    border-color: rgba(0, 0, 0, 0.1);
}

.theme-light .border-white\/5,
.theme-light .border-white\/10 {
    border-color: rgba(0, 0, 0, 0.06);
}

/* Light theme gradients */
.theme-light .from-slate-900 {
    --tw-gradient-from: #ffffff var(--tw-gradient-from-position);
}

.theme-light .from-black\/90 {
    --tw-gradient-from: rgba(255, 255, 255, 0.9) var(--tw-gradient-from-position);
}

.theme-light .via-black\/40 {
    --tw-gradient-via: rgba(255, 255, 255, 0.4) var(--tw-gradient-via-position);
}

/* Light theme scrollbar */
.theme-light *::-webkit-scrollbar-track {
    background: #f8fafc;
}

.theme-light *::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}

.theme-light *::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Light theme range input */
.theme-light input[type=range]::-webkit-slider-runnable-track {
    background: #e2e8f0;
}

.theme-light input[type=range]::-moz-range-track {
    background: #e2e8f0;
}

/* Light theme input fields */
.theme-light input[type="text"],
.theme-light input[type="tel"],
.theme-light textarea {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1e293b;
}

.theme-light input[type="text"]::placeholder,
.theme-light input[type="tel"]::placeholder,
.theme-light textarea::placeholder {
    color: #94a3b8;
}

/* Light theme car cards */
.theme-light .car-card,
.theme-light .group {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.theme-light .car-card:hover,
.theme-light .group:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Light theme hover states */
.theme-light .hover\:bg-slate-700:hover,
.theme-light .hover\:bg-slate-600:hover,
.theme-light .hover\:bg-slate-800:hover {
    background-color: #e2e8f0;
}

.theme-light .hover\:text-white:hover {
    color: var(--accent);
}

/* Light theme selection */
.theme-light ::selection {
    background-color: var(--accent);
    color: white;
}

/* Light theme modal overlay */
.theme-light #modal-overlay {
    background: rgba(255, 255, 255, 0.9);
}

/* Light theme nav button active */
.theme-light .nav-btn-active {
    box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.2);
}

/* Light theme scanline */
.theme-light .scanline {
    background: linear-gradient(to bottom, transparent, rgba(var(--accent-rgb), 0.05), transparent);
}

/* Light theme success/status colors remain vivid */
.theme-light .text-green-400,
.theme-light .text-green-500 {
    color: #22c55e;
}

.theme-light .bg-green-500\/20 {
    background-color: rgba(34, 197, 94, 0.15);
}

.theme-light .border-green-500\/50 {
    border-color: rgba(34, 197, 94, 0.3);
}

/* Light theme red alert colors */
.theme-light .text-red-400,
.theme-light .text-red-500 {
    color: #ef4444;
}

.theme-light .bg-red-500 {
    background-color: #ef4444;
}

/* Light theme yellow star color */
.theme-light .text-yellow-400 {
    color: #facc15;
}

/* Light theme chat bubbles */
.theme-light .bg-accent {
    background-color: var(--accent);
    color: white;
}

/* Keep accent buttons with white text */
.theme-light .btn-accent-primary,
.theme-light .btn-accent-secondary {
    color: white;
}

/* Light theme progress bar background */
.theme-light .bg-slate-700 {
    background-color: #e2e8f0;
}

/* ================================================
   LIGHT THEME - ENHANCED UI ELEMENTS
   ================================================ */

/* Brand buttons - cleaner look without dark overlay */
.theme-light #menu-brands button .overlay {
    background: transparent !important;
}

.theme-light #menu-brands button {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.theme-light #menu-brands button:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.15);
}

.theme-light #menu-brands button img {
    opacity: 1 !important;
}

/* Brand names as compact tags (skip first "ALL" button) */
.theme-light #menu-brands button:not(:first-child) > div:last-child {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    font-size: 9px !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    bottom: 4px !important;
}

/* Model buttons */
.theme-light #menu-models button {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
}

.theme-light #menu-models button:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

/* Chat message bubbles - light blue tint with border */
.theme-light .glass-panel:not(#nav-menu .glass-panel):not(.promo-accent) {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.03), rgba(255, 255, 255, 0.95)) !important;
    border: 1px solid rgba(var(--accent-rgb), 0.15) !important;
}

/* Manager avatar area styling */
.theme-light #chat-feed > div:not(#nav-menu):not(#s-cars):not(.text-center) .glass-panel {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), #ffffff) !important;
    border: 1px solid rgba(var(--accent-rgb), 0.2) !important;
    box-shadow: 0 2px 12px rgba(var(--accent-rgb), 0.08);
}

/* Benefits panel - subtle accent tint */
.theme-light .bg-\[\#1e293b\]\/60 {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), rgba(255, 255, 255, 0.9)) !important;
    border: 1px solid rgba(var(--accent-rgb), 0.1);
}

/* Car cards - cleaner white design */
.theme-light .bg-slate-800\/40 {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
}

.theme-light .bg-slate-800\/40:hover {
    border-color: rgba(var(--accent-rgb), 0.4) !important;
    box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.12);
}

/* Left sidebar panels */
.theme-light .glass-sidebar {
    background: #ffffff !important;
    border: 1px solid rgba(var(--accent-rgb), 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Right sidebar promo - enhanced */
.theme-light .promo-accent {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), #ffffff) !important;
    border: 1px solid rgba(var(--accent-rgb), 0.2) !important;
}

/* Live monitor section */
.theme-light .bg-\[\#050b14\] {
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.03), #f8fafc) !important;
    border-radius: 0.75rem;
}

/* Manager card in sidebar */
.theme-light aside .glass-sidebar:last-child {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), #ffffff) !important;
}

/* Online status indicator */
.theme-light .text-green-400 {
    color: #10b981 !important;
}

/* Links and interactive elements accent */
.theme-light a:hover {
    color: var(--accent);
}

/* Form inputs with accent focus */
.theme-light input:focus,
.theme-light textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

/* Quiz buttons */
.theme-light #quiz-block .glass-panel {
    background: #ffffff !important;
    border: 1px solid rgba(var(--accent-rgb), 0.15) !important;
}

/* Lead form */
.theme-light #lead-form {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.03), #ffffff) !important;
    border: 1px solid rgba(var(--accent-rgb), 0.2) !important;
}

/* Mobile header */
.theme-light .glass-header {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.1) !important;
}

/* Mobile footer */
.theme-light .lg\:hidden.fixed.bottom-0 {
    background: #ffffff !important;
    border-top: 1px solid rgba(var(--accent-rgb), 0.15) !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

/* Diagnostic card badge - light theme */
.theme-light .bg-green-900\/30 {
    background-color: rgba(34, 197, 94, 0.15) !important;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.theme-light .text-green-400.bg-green-900\/30 {
    color: #15803d !important; /* darker green for contrast */
}

/* WhatsApp button - keep white text in light theme */
.theme-light .bg-green-600,
.theme-light .bg-green-600 svg {
    color: white !important;
    fill: white !important;
}

/* Mobile Live Monitor - light theme */
.theme-light .bg-\[\#0f172a\]\/90 {
    background-color: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.theme-light .bg-slate-800\/50 {
    background-color: rgba(248, 250, 252, 0.95) !important;
}

.theme-light .border-slate-600\/50 {
    border-color: rgba(0, 0, 0, 0.06) !important;
}

.theme-light .border-slate-700\/50 {
    border-color: rgba(0, 0, 0, 0.04) !important;
}

/* Red LIVE indicator with glow */
.theme-light .bg-red-500 {
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.7), 0 0 20px rgba(239, 68, 68, 0.4);
}

.theme-light .animate-ping.bg-red-400 {
    background-color: rgba(248, 113, 113, 0.6) !important;
}

/* Mobile Live Monitor - ensure all 3 items visible */
.theme-light .bg-\[\#0f172a\]\/90 [id^="feed-"] {
    padding-bottom: 0.75rem !important;
    height: 130px !important;
}

/* Dark theme - same height fix */
.bg-\[\#0f172a\]\/90 [id^="feed-"] {
    height: 130px !important;
}
