﻿/* ============================================
   PROFESSIONAL LIGHT THEME - SALES DASHBOARD
   Toyota Brand Colors: Red, Black, White
   ============================================ */

/* Light Theme Base - Clean Professional Look */
.theme-light .dashboard-container {
    background: #f8f9fa;
    /* padding: 2rem; */
}

/* ============================================
   DASHBOARD HEADER - Executive Style
   ============================================ */
.theme-light .dashboard-header {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid var(--toyota-red);
    border-left-width: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

    .theme-light .dashboard-header::before {
        background: radial-gradient(circle, rgba(235, 10, 30, 0.08) 0%, transparent 70%);
    }

    .theme-light .dashboard-header h1 {
        color: #ffffff;
        font-weight: 700;
    }

        .theme-light .dashboard-header h1 i {
            color: white;
        }

    .theme-light .dashboard-header p {
        color: #ffffff;
    }

/* ============================================
   STAT CARDS - Professional Metrics
   ============================================ */
.theme-light .stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .theme-light .stat-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
        transform: translateY(-6px);
        border-color: var(--toyota-red);
    }

    /* Red accent bar on top */
    .theme-light .stat-card.primary::before {
        background: linear-gradient(90deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    }

    .theme-light .stat-card.success::before {
        background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    }

    .theme-light .stat-card.warning::before {
        background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    }

    .theme-light .stat-card.accent::before {
        background: linear-gradient(90deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    }

/* Stat Card Content - Professional Typography */
.theme-light .stat-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.theme-light .stat-icon-wrapper {
    flex-shrink: 0;
}

.theme-light .stat-content {
    flex: 1;
    min-width: 0;
}

.theme-light .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* text-align: right; */
    line-height: 1.4;
    margin-left: 9px;
}

.theme-light .stat-value {
    color: var(--toyota-grey-dark);
    font-weight: 800;
    font-size: 2.5rem;
}

/*.theme-light .stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
}
*/
    .theme-light .stat-trend.positive {
        color: #16a34a;
    }

    .theme-light .stat-trend.neutral {
        color: var(--toyota-grey);
    }

/* Professional Icon Styling */
.theme-light .stat-card.primary .stat-icon {
    background: linear-gradient(135deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    box-shadow: 0 4px 12px rgba(235, 10, 30, 0.25);
}

.theme-light .stat-card.success .stat-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.theme-light .stat-card.warning .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.theme-light .stat-card.accent .stat-icon {
    background: linear-gradient(135deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    box-shadow: 0 4px 12px rgba(235, 10, 30, 0.25);
}

/* ============================================
   DASHBOARD CARDS - Clean Corporate Design
   ============================================ */
.theme-light .dashboard-card {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Professional Card Header */
.theme-light .card-header {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 3px solid var(--toyota-red);
}

    .theme-light .card-header h2 {
        color: var(--toyota-grey-dark);
        font-weight: 700;
    }

        .theme-light .card-header h2 i {
            color: var(--toyota-red);
        }

.theme-light .header-badge {
    background: rgba(235, 10, 30, 0.08);
    color: var(--toyota-red);
    border: 1px solid rgba(235, 10, 30, 0.2);
    font-weight: 700;
}

.theme-light .card-content {
    background: white;
}

/* ============================================
   TABLES - Professional Data Display
   ============================================ */
.theme-light .performance-table {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

    .theme-light .performance-table th {
        background: linear-gradient(135deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
        color: white;
        font-weight: 700;
        border-bottom: 3px solid var(--toyota-red);
        padding: 1.25rem 1.5rem;
    }

    .theme-light .performance-table td {
        color: var(--toyota-grey-dark);
        border-bottom: 1px solid #e5e7eb;
        padding: 1.25rem 1.5rem;
    }

    .theme-light .performance-table tbody tr {
        transition: all 0.2s ease;
    }

        .theme-light .performance-table tbody tr:hover {
            background: linear-gradient(90deg, rgba(235, 10, 30, 0.03) 0%, rgba(235, 10, 30, 0.06) 100%);
            box-shadow: inset 3px 0 0 var(--toyota-red);
        }

        .theme-light .performance-table tbody tr:nth-child(even) {
            background: #f9fafb;
        }

            .theme-light .performance-table tbody tr:nth-child(even):hover {
                background: linear-gradient(90deg, rgba(235, 10, 30, 0.03) 0%, rgba(235, 10, 30, 0.06) 100%);
            }

.theme-light .policyholder-info span {
    color: var(--toyota-grey-dark);
    font-weight: 600;
}

.theme-light .date-value {
    color: var(--toyota-grey);
    font-weight: 500;
}

.theme-light .metric-value {
    color: #16a34a;
    font-weight: 700;
}

/* ============================================
   STATUS BADGES - Professional Indicators
   ============================================ */
.theme-light .status-badge.pending {
    background: #fef3c7;
    color: #92400e;
    border-color: #fbbf24;
    font-weight: 700;
}

.theme-light .status-badge.concluded {
    background: #d1fae5;
    color: #065f46;
    border-color: #10b981;
    font-weight: 700;
}

.theme-light .status-badge.default {
    background: #f3f4f6;
    color: var(--toyota-grey);
    border-color: #d1d5db;
    font-weight: 700;
}

/* ============================================
   NOTES SECTION - Light Theme Overrides
   ============================================ */
/* Notes Tabs - Light Theme Container */
.theme-light .notes-tabs {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

/* Tab Buttons - Light Theme Colors */
.theme-light .tab-btn {
    color: var(--toyota-grey);
}

    .theme-light .tab-btn:hover:not(.active) {
        background: rgba(235, 10, 30, 0.05);
        color: var(--toyota-red);
    }

    .theme-light .tab-btn.active {
        background: white;
        color: var(--toyota-red);
        border-color: var(--toyota-red);
        box-shadow: 0 2px 8px rgba(235, 10, 30, 0.15);
    }

        .theme-light .tab-btn.active i,
        .theme-light .tab-btn.active span {
            color: white;
        }

.theme-light .note-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

    .theme-light .note-item:hover {
        background: linear-gradient(90deg, rgba(235, 10, 30, 0.02) 0%, rgba(235, 10, 30, 0.04) 100%);
        margin: 0 -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        border-left: 3px solid var(--toyota-red);
    }

.theme-light .note-title {
    color: var(--toyota-grey-dark);
    font-weight: 700;
}

.theme-light .note-description {
    color: var(--toyota-grey);
    line-height: 1.6;
}

.theme-light .note-date {
    color: var(--toyota-grey-light);
    font-weight: 500;
}

/* Note Categories - Professional Colors */
.theme-light .note-category.note {
    background: #f3f4f6;
    color: var(--toyota-grey-dark);
    border-color: #d1d5db;
    font-weight: 700;
}

.theme-light .note-category.callback {
    background: #fef3c7;
    color: #92400e;
    border-color: #fbbf24;
    font-weight: 700;
}

.theme-light .note-category.deleted {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fca5a5;
    font-weight: 700;
}

/* ============================================
   BUTTONS - Professional Actions
   ============================================ */
.theme-light .btn-primary {
    background: linear-gradient(135deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(235, 10, 30, 0.25);
    font-weight: 600;
}

    .theme-light .btn-primary:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(235, 10, 30, 0.35);
    }

.theme-light .btn-ghost {
    color: var(--toyota-grey);
    border: 1px solid #d1d5db;
    background: white;
    font-weight: 600;
}

    .theme-light .btn-ghost:hover:not(:disabled) {
        background: #f9fafb;
        color: var(--toyota-grey-dark);
        border-color: var(--toyota-grey);
    }

.theme-light .btn-success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
    font-weight: 600;
}

    .theme-light .btn-success:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
    }

.theme-light .btn-danger {
    background: linear-gradient(135deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(235, 10, 30, 0.25);
    font-weight: 600;
}

    .theme-light .btn-danger:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(235, 10, 30, 0.35);
    }

/* ============================================
   MODALS - Professional Dialogs
   ============================================ */
.theme-light .modal-backdrop {
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(8px);
}

.theme-light .modal-content {
    background: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
}

.theme-light .modal-danger {
    border-top: 4px solid var(--toyota-red);
}

.theme-light .modal-header {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 3px solid var(--toyota-red);
}

    .theme-light .modal-header h3 {
        color: var(--toyota-grey-dark);
        font-weight: 700;
    }

        .theme-light .modal-header h3 i {
            color: var(--toyota-red);
        }

.theme-light .modal-body {
    background: white;
}

.theme-light .modal-footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

/* ============================================
   FORMS - Professional Input Styling
   ============================================ */
.theme-light .form-group label {
    color: var(--toyota-grey-dark);
    font-weight: 600;
}

    .theme-light .form-group label i {
        color: var(--toyota-red);
    }

.theme-light .form-control {
    background: white;
    border: 2px solid #e5e7eb;
    color: var(--toyota-grey-dark);
    transition: all 0.2s ease;
}

    .theme-light .form-control:focus {
        border-color: var(--toyota-red);
        box-shadow: 0 0 0 4px rgba(235, 10, 30, 0.1);
        background: white;
    }

    .theme-light .form-control::placeholder {
        color: #9ca3af;
    }

/* ============================================
   ALERTS - Professional Notifications
   ============================================ */
.theme-light .alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #f87171;
    color: #991b1b;
}

    .theme-light .alert-danger i {
        color: #dc2626;
    }

/* ============================================
   LOADING STATE - Professional Spinner
   ============================================ */
.theme-light .loading-container {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.theme-light .spinner {
    border-color: #f3f4f6;
    border-top-color: var(--toyota-red);
    box-shadow: 0 4px 12px rgba(235, 10, 30, 0.2);
}

.theme-light .loading-text {
    color: var(--toyota-grey-dark);
    font-weight: 600;
}

/* ============================================
   EMPTY STATES - Professional Messaging
   ============================================ */
.theme-light .empty-state {
    color: var(--toyota-grey);
}

    .theme-light .empty-state h3 {
        color: var(--toyota-grey-dark);
        font-weight: 700;
    }

    .theme-light .empty-state p {
        color: var(--toyota-grey);
    }

.theme-light .empty-icon {
    background: linear-gradient(135deg, rgba(235, 10, 30, 0.1) 0%, rgba(235, 10, 30, 0.15) 100%);
    color: var(--toyota-red);
    border: 2px solid rgba(235, 10, 30, 0.2);
}

/* ============================================
   MOBILE CARDS - Professional Mobile Design
   ============================================ */
.theme-light .quote-card-mobile {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

    .theme-light .quote-card-mobile:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
        border-color: var(--toyota-red);
    }

.theme-light .quote-card-header {
    border-bottom: 3px solid var(--toyota-red);
}

.theme-light .quote-label {
    color: var(--toyota-grey);
    font-weight: 700;
}

.theme-light .detail-label {
    color: var(--toyota-grey);
    font-weight: 600;
}

.theme-light .detail-value {
    color: var(--toyota-grey-dark);
    font-weight: 700;
}

    .theme-light .detail-value.premium {
        color: #16a34a;
        font-weight: 800;
    }

/* ============================================
   WARNING COMPONENTS - Professional Alerts
   ============================================ */
.theme-light .deletion-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
}

.theme-light .warning-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.theme-light .warning-content h4,
.theme-light .warning-content p {
    color: #92400e;
    font-weight: 600;
}

/* ============================================
   PROFESSIONAL ENHANCEMENTS
   ============================================ */

/* Add subtle shadows for depth */
.theme-light .stat-card,
.theme-light .dashboard-card {
    position: relative;
}

    .theme-light .stat-card::after,
    .theme-light .dashboard-card::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--toyota-red) 50%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .theme-light .stat-card:hover::after,
    .theme-light .dashboard-card:hover::after {
        opacity: 0.5;
    }

/* Professional scrollbar for light theme */
.theme-light ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.theme-light ::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.theme-light ::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

    .theme-light ::-webkit-scrollbar-thumb:hover {
        background: var(--toyota-grey);
    }

/* ============================================
   PRINT STYLES - Client Presentation Ready
   ============================================ */
@media print {
    .theme-light .dashboard-container {
        background: white;
    }

    .theme-light .stat-card,
    .theme-light .dashboard-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #d1d5db;
    }

    .theme-light .btn,
    .theme-light .notes-tabs,
    .theme-light .note-actions {
        display: none;
    }
}

/* ============================================
   RESPONSIVE REFINEMENTS
   ============================================ */
@media (max-width: 768px) {
    .theme-light .stat-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .theme-light .stat-icon-wrapper {
        align-self: center;
    }

    .theme-light .dashboard-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .theme-light .note-item:hover {
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .theme-light .notes-header-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .theme-light .notes-tabs {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .theme-light .stat-card {
        padding: 1.5rem;
    }
}

/* ============================================
   ACCESSIBILITY - Professional Standards
   ============================================ */
.theme-light .btn:focus-visible {
    outline: 3px solid var(--toyota-red);
    outline-offset: 2px;
}

.theme-light .form-control:focus-visible {
    outline: none;
    border-color: var(--toyota-red);
    box-shadow: 0 0 0 4px rgba(235, 10, 30, 0.1);
}

.theme-light a:focus-visible {
    outline: 2px solid var(--toyota-red);
    outline-offset: 2px;
    border-radius: 0.25rem;
}
/* ============================================
   LIGHT THEME - STAT CARDS (VERTICAL LAYOUT)
   This matches the dark theme structure exactly
   Replace the stat card section in skin-dashboards-light-theme.css
   ============================================ */

/* ============================================
   STAT CARDS - Vertical Layout (Matches Dark Theme)
   ============================================ */
.theme-light .stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* CRITICAL: Override any flex-direction rules */
    display: flex;
    flex-direction: column !important; /* Force vertical */
    gap: 1.25rem;
    min-height: 160px;
    padding: 2rem;
}

    .theme-light .stat-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
        border-color: var(--toyota-red);
    }

    /* Red accent bar on top */
    .theme-light .stat-card.primary::before {
        background: linear-gradient(90deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    }

    .theme-light .stat-card.success::before {
        background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    }

    .theme-light .stat-card.warning::before {
        background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    }

    .theme-light .stat-card.accent::before {
        background: linear-gradient(90deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    }

/* Stat Card Header - Icon LEFT, Label RIGHT (Horizontal) */
.theme-light .stat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.theme-light .stat-icon-wrapper {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.theme-light .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

    .theme-light .stat-icon::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 0.75rem;
        background: inherit;
        opacity: 0.2;
        filter: blur(12px);
        z-index: -1;
    }

/* Professional Icon Styling - Keep vibrant colors on white */
.theme-light .stat-card.primary .stat-icon {
    background: linear-gradient(135deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    box-shadow: 0 4px 12px rgba(235, 10, 30, 0.25);
}

.theme-light .stat-card.success .stat-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.theme-light .stat-card.warning .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.theme-light .stat-card.accent .stat-icon {
    background: linear-gradient(135deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    box-shadow: 0 4px 12px rgba(235, 10, 30, 0.25);
}

.theme-light .stat-card:hover .stat-icon {
    transform: scale(1.05) rotate(5deg);
}

/* Stat Label - Top Right (in header) */
.theme-light .stat-label {
    color: var(--toyota-grey);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: right;
    line-height: 1.4;
    /* Remove any margin that might be pushing it */
    margin: 0;
}

/* Stat Content - Value and Trend (Horizontal at bottom) */
.theme-light .stat-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.theme-light .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--toyota-grey-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Stat Trend - Pill Badge Style */
.theme-light .stat-trend {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
}

    .theme-light .stat-trend i {
        font-size: 0.75rem;
    }

    .theme-light .stat-trend.positive {
        color: #16a34a;
        background: #d1fae5;
    }

    .theme-light .stat-trend.warning {
        color: #d97706;
        background: #fef3c7;
    }

    .theme-light .stat-trend.neutral {
        color: var(--toyota-grey);
        background: #f3f4f6;
    }

/* ============================================
   RESPONSIVE - STAT CARDS LIGHT THEME
   ============================================ */
@media (max-width: 768px) {
    .theme-light .stat-card {
        padding: 1.5rem;
        min-height: 140px;
    }

    .theme-light .stat-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .theme-light .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .theme-light .stat-value {
        font-size: 2rem;
    }

    .theme-light .stat-label {
        font-size: 0.6875rem;
    }

    .theme-light .stat-trend {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .theme-light .stat-card {
        padding: 1.25rem;
    }
}

/* ============================================
   DASHBOARD HEADER - Light Theme 
   ============================================ */
.theme-light .dashboard-header {
    background: linear-gradient(135deg, var(--toyota-red) 0%, var(--toyota-red-dark) 100%);
    border: none;
    border-left: 8px solid var(--toyota-red-dark);
    box-shadow: 0 4px 20px rgba(235, 10, 30, 0.25);
}

    .theme-light .dashboard-header::before {
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    }

    .theme-light .dashboard-header h1 {
        color: white;
        font-weight: 700;
    }

        .theme-light .dashboard-header h1 i {
            color: white;
        }

    .theme-light .dashboard-header p {
        color: rgba(255, 255, 255, 0.95);
    }

/* ============================================
   PROFESSIONAL ENHANCEMENTS - Light Theme
   ============================================ */

/* Add subtle bottom accent on hover */
.theme-light .stat-card {
    position: relative;
}

    .theme-light .stat-card::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--toyota-red) 50%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .theme-light .stat-card:hover::after {
        opacity: 0.5;
    }

/* ============================================
   LIGHT THEME - LOADING SPINNER
   Add this to skin-dashboards-light-theme.css
   ============================================ */

.theme-light .loading-container {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.theme-light .spinner {
    border: 5px solid #f3f4f6;
    border-top: 5px solid var(--toyota-red);
    border-right: 5px solid var(--toyota-red);
    box-shadow: 0 0 20px rgba(235, 10, 30, 0.2);
}

    .theme-light .spinner::before {
        border: 3px solid transparent;
        border-top: 3px solid rgba(235, 10, 30, 0.4);
    }

    .theme-light .spinner::after {
        background: var(--toyota-red);
        box-shadow: 0 0 10px rgba(235, 10, 30, 0.5);
    }

.theme-light .loading-text {
    color: var(--toyota-grey-dark);
    font-weight: 600;
}

.theme-light .loading-icon {
    color: var(--toyota-red);
}