/* =============================================================================
   SNOW ROUTE MANAGER - Arctic Professional Theme
   Adan Construction © 2024
   ============================================================================= */

/* CSS Variables */
:root {
    /* Primary Colors - Deep Arctic */
    --primary-900: #0c1929;
    --primary-800: #132337;
    --primary-700: #1a2f4a;
    --primary-600: #234163;
    --primary-500: #2d547c;
    
    /* Accent - Ice Blue */
    --accent-500: #38bdf8;
    --accent-400: #7dd3fc;
    --accent-300: #bae6fd;
    --accent-glow: rgba(56, 189, 248, 0.3);
    
    /* Surface Colors */
    --surface-100: #ffffff;
    --surface-200: #f8fafc;
    --surface-300: #f1f5f9;
    --surface-400: #e2e8f0;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    
    /* Status Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;
    
    /* Priority Colors */
    --priority-high: #ef4444;
    --priority-medium: #f59e0b;
    --priority-low: #22c55e;
    
    /* Layout */
    --sidebar-width: 260px;
    --topbar-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --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);
    --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 50%, var(--primary-700) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

/* Ambient Background */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(56, 189, 248, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(59, 130, 246, 0.06), transparent);
    pointer-events: none;
    z-index: 0;
}

/* =============================================================================
   SIDEBAR
   ============================================================================= */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--primary-800) 0%, var(--primary-900) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    z-index: 100;
    box-shadow: var(--shadow-xl);
}

.sidebar-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-500), var(--info));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.brand-sub {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-menu {
    list-style: none;
    padding: 16px 12px;
    flex: 1;
}

.nav-item {
    margin-bottom: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.nav-link:hover i {
    opacity: 1;
    color: var(--accent-400);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(59, 130, 246, 0.1));
    color: white;
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.2);
}

.nav-link.active i {
    opacity: 1;
    color: var(--accent-400);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: var(--accent-500);
    border-radius: 0 4px 4px 0;
}

.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.season-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-400);
    font-size: 13px;
    font-weight: 600;
}

.season-badge i {
    animation: snowflake-spin 3s linear infinite;
}

@keyframes snowflake-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =============================================================================
   MAIN CONTENT
   ============================================================================= */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    background: var(--surface-200);
    position: relative;
    z-index: 1;
}

.top-bar {
    height: var(--topbar-height);
    background: white;
    border-bottom: 1px solid var(--surface-400);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface-300);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.location-badge i {
    color: var(--danger);
}

.content-area {
    padding: 32px;
}

/* =============================================================================
   FLASH MESSAGES
   ============================================================================= */
.flash-messages {
    padding: 16px 32px 0;
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.flash-success {
    background: var(--success-light);
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.flash-error {
    background: var(--danger-light);
    color: #991b1b;
    border: 1px solid #fecaca;
}

.flash-warning {
    background: var(--warning-light);
    color: #92400e;
    border: 1px solid #fde68a;
}

.flash-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.flash-close:hover {
    opacity: 1;
}

/* =============================================================================
   CARDS
   ============================================================================= */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card.glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--surface-400);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header.compact {
    padding: 16px 20px;
}

.card-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h2 i {
    color: var(--accent-500);
}

.card-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header h3 i {
    color: var(--text-muted);
}

.card-action {
    font-size: 13px;
    color: var(--accent-500);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.card-action:hover {
    color: var(--info);
}

.card-body {
    padding: 24px;
}

.card-body.no-padding {
    padding: 0;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-500), var(--info));
    color: white;
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.btn-outline {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--surface-400);
}

.btn-outline:hover {
    background: var(--surface-200);
    border-color: var(--surface-400);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    background: var(--surface-300);
}

.btn-danger {
    background: var(--danger-light);
    color: var(--danger);
}

.btn-danger:hover {
    background: var(--danger);
    color: white;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius-sm);
}

/* =============================================================================
   METRICS
   ============================================================================= */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.metric-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* =============================================================================
   ALERT BANNERS
   ============================================================================= */
.alert-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.alert-snow {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border: 1px solid #7dd3fc;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #fbbf24;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #f87171;
}

.alert-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.alert-icon.pulse {
    animation: icon-pulse 1.5s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.alert-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.alert-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.alert-action {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.alert-action:hover {
    background: white;
}

/* =============================================================================
   DASHBOARD LAYOUT
   ============================================================================= */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* =============================================================================
   FORECAST STRIP
   ============================================================================= */
.forecast-strip {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.forecast-day {
    text-align: center;
    padding: 16px 8px;
    border-radius: var(--radius-md);
    background: var(--surface-200);
    transition: all var(--transition-normal);
}

.forecast-day.has-snow {
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border: 1px solid #93c5fd;
}

.forecast-day:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.day-name {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.day-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.day-temps {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
}

.temp-high {
    font-weight: 700;
    color: var(--text-primary);
}

.temp-low {
    color: var(--text-muted);
}

.day-snow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--info);
}

/* =============================================================================
   WEATHER MAP
   ============================================================================= */
.weather-map {
    width: 100%;
    height: 400px;
    border: none;
}

.full-weather-map {
    width: 100%;
    height: 600px;
    border: none;
}

.map-caption {
    padding: 12px 20px;
    background: var(--surface-200);
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    background: var(--surface-200);
    border-bottom: 1px solid var(--surface-400);
}

.map-tab {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--surface-400);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.map-tab:hover {
    background: var(--surface-300);
}

.map-tab.active {
    background: linear-gradient(135deg, var(--accent-500), var(--info));
    color: white;
    border-color: transparent;
}

/* =============================================================================
   CURRENT WEATHER
   ============================================================================= */
.current-weather {
    text-align: center;
}

.current-temp {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.current-details {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.current-details i {
    margin-right: 4px;
    color: var(--text-muted);
}

.current-desc {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Weather Hero */
.weather-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.current-conditions-card {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    border-radius: var(--radius-lg);
    padding: 32px;
    color: white;
    box-shadow: var(--shadow-xl);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.hero-weather {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 24px;
}

.hero-temp {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 8px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 600;
}

.hero-feels {
    font-size: 14px;
    opacity: 0.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat i {
    font-size: 20px;
    opacity: 0.7;
}

.hero-stat span {
    font-size: 16px;
    font-weight: 600;
}

.hero-stat small {
    font-size: 12px;
    opacity: 0.6;
}

.total-snow-card {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.total-snow-icon {
    font-size: 36px;
    margin-bottom: 12px;
    animation: snowflake-spin 4s linear infinite;
}

.total-snow-value {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.total-snow-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

.snow-days-count {
    margin-top: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
}

/* =============================================================================
   STATS SECTION
   ============================================================================= */
.stats-section {
    margin-bottom: 20px;
}

.stats-section:last-child {
    margin-bottom: 0;
}

.stats-section h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.stat-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-bar {
    display: grid;
    grid-template-columns: 100px 1fr 40px;
    align-items: center;
    gap: 12px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.high { background: var(--priority-high); }
.dot.medium { background: var(--priority-medium); }
.dot.low { background: var(--priority-low); }

.stat-bar-fill {
    height: 8px;
    background: var(--surface-300);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.stat-bar-fill::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--fill-width, 0%);
    background: linear-gradient(90deg, var(--accent-500), var(--info));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
}

.driver-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.driver-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--surface-200);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

.driver-chip i {
    color: var(--text-muted);
}

.chip-count {
    background: var(--accent-500);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

/* =============================================================================
   SNOW ALERTS
   ============================================================================= */
.snow-alerts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.snow-alert-item {
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--surface-200);
    border-left: 4px solid var(--info);
}

.snow-alert-item.heavy {
    background: linear-gradient(135deg, #fee2e2, #fef2f2);
    border-left-color: var(--danger);
}

.snow-alert-item.moderate {
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    border-left-color: var(--warning);
}

.snow-alert-item.light {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border-left-color: var(--info);
}

.snow-alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.severity-badge {
    font-size: 14px;
}

.snow-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.snow-amount {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.snow-amount strong {
    color: var(--text-primary);
}

.severity-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.no-snow-message {
    text-align: center;
    padding: 24px;
}

.no-snow-message i {
    font-size: 36px;
    color: var(--success);
    margin-bottom: 12px;
}

.no-snow-message h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.no-snow-message p {
    font-size: 13px;
    color: var(--text-muted);
}

.no-snow-banner {
    text-align: center;
    padding: 40px;
}

.no-snow-banner i {
    font-size: 48px;
    color: var(--success);
    margin-bottom: 16px;
}

.no-snow-banner h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.no-snow-banner p {
    color: var(--text-muted);
}

/* =============================================================================
   SNOW DAY GRID
   ============================================================================= */
.snow-day-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.snow-day-card {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--surface-200);
    border-left: 4px solid var(--info);
}

.snow-day-card.heavy {
    background: linear-gradient(135deg, #fee2e2, #fef2f2);
    border-left-color: var(--danger);
}

.snow-day-card.moderate {
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    border-left-color: var(--warning);
}

.snow-day-severity {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.snow-day-date {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.snow-day-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--info);
}

.snow-day-action {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

/* =============================================================================
   FORECAST TABLE
   ============================================================================= */
.forecast-table-wrapper {
    overflow-x: auto;
}

.forecast-table {
    width: 100%;
    border-collapse: collapse;
}

.forecast-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--surface-200);
    border-bottom: 1px solid var(--surface-400);
}

.forecast-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--surface-300);
}

.forecast-table tr:hover {
    background: var(--surface-200);
}

.forecast-table tr.snow-highlight {
    background: linear-gradient(90deg, #dbeafe, transparent);
}

.forecast-table tr.snow-highlight:hover {
    background: linear-gradient(90deg, #bfdbfe, var(--surface-200));
}

.date-cell {
    font-weight: 600;
    color: var(--text-primary);
}

.icon-cell {
    font-size: 24px;
}

.low-temp {
    color: var(--text-muted);
}

.snow-cell {
    font-weight: 700;
    color: var(--info);
}

.snow-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--info-light);
    color: var(--info);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
}

/* =============================================================================
   SOURCES STATUS
   ============================================================================= */
.source-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.source-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--surface-200);
}

.source-status.online {
    background: var(--success-light);
}

.source-status.online i {
    color: var(--success);
}

.source-status.offline {
    background: var(--danger-light);
}

.source-status.offline i {
    color: var(--danger);
}

.source-status.limited {
    background: var(--warning-light);
}

.source-status.limited i {
    color: var(--warning);
}

.source-status i {
    font-size: 24px;
}

.source-name {
    font-weight: 600;
    color: var(--text-primary);
}

.source-state {
    font-size: 13px;
    color: var(--text-secondary);
}

.source-badge {
    padding: 4px 12px;
    background: var(--surface-300);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.source-badge.secondary {
    background: var(--warning-light);
    color: #92400e;
}

/* =============================================================================
   FILTERS
   ============================================================================= */
.filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.filters-form {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

.filter-group select {
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--surface-400);
    border-radius: var(--radius-sm);
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    min-width: 160px;
}

.filter-actions {
    display: flex;
    gap: 12px;
}

/* =============================================================================
   SITES GRID
   ============================================================================= */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.site-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-top: 4px solid var(--surface-400);
}

.site-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.site-card.priority-high {
    border-top-color: var(--priority-high);
}

.site-card.priority-medium {
    border-top-color: var(--priority-medium);
}

.site-card.priority-low {
    border-top-color: var(--priority-low);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--surface-200);
}

.site-order {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

.priority-badge {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.priority-badge.high {
    background: var(--danger-light);
    color: #991b1b;
}

.priority-badge.medium {
    background: var(--warning-light);
    color: #92400e;
}

.priority-badge.low {
    background: var(--success-light);
    color: #065f46;
}

.site-body {
    padding: 20px;
}

.site-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.site-address {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.site-address i {
    color: var(--danger);
    margin-top: 2px;
}

.site-notes {
    margin-top: 12px;
    padding: 12px;
    background: var(--surface-200);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-muted);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--surface-300);
}

.site-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.driver-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--surface-200);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--info-light);
    color: var(--info);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

/* =============================================================================
   FORMS
   ============================================================================= */
.form-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}

.form-card {
    max-width: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--text-muted);
}

.required {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--surface-400);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-group {
    display: flex;
    gap: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--surface-400);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--accent-500);
    border-color: var(--accent-500);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.checkbox-text {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--surface-300);
}

.form-tips {
    position: sticky;
    top: calc(var(--topbar-height) + 32px);
}

.tip-card {
    background: linear-gradient(135deg, #fef3c7, #fef9c3);
    border: 1px solid #fde68a;
    border-radius: var(--radius-lg);
    padding: 24px;
}

.tip-icon {
    width: 48px;
    height: 48px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 16px;
}

.tip-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
}

.tip-content ul {
    list-style: none;
}

.tip-content li {
    font-size: 13px;
    color: #a16207;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.tip-content li::before {
    content: '→';
    position: absolute;
    left: 0;
}

/* =============================================================================
   MAP PAGE
   ============================================================================= */
.map-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

.map-card {
    height: fit-content;
}

.map-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.legend-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-marker.high { background: var(--priority-high); }
.legend-marker.medium { background: var(--priority-medium); }
.legend-marker.low { background: var(--priority-low); }

.summary-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.summary-stat {
    text-align: center;
    padding: 16px;
    background: var(--surface-200);
    border-radius: var(--radius-md);
}

.summary-stat.warning {
    background: var(--warning-light);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.help-list {
    list-style: none;
}

.help-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--surface-300);
}

.help-list li:last-child {
    border-bottom: none;
}

/* =============================================================================
   COMING SOON / EMPTY STATES
   ============================================================================= */
.coming-soon-container {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.coming-soon-card {
    text-align: center;
    max-width: 480px;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-500), var(--info));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.coming-soon-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.coming-soon-card > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.features-preview {
    background: var(--surface-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.features-preview h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.features-preview ul {
    list-style: none;
}

.features-preview li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--surface-300);
}

.features-preview li:last-child {
    border-bottom: none;
}

.features-preview li i {
    color: var(--success);
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-state.large {
    padding: 80px 20px;
}

.empty-state.small {
    padding: 24px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--surface-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-muted);
}

.empty-state h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.empty-state p {
    margin-bottom: 20px;
}

/* =============================================================================
   COLLAPSIBLE SECTIONS
   ============================================================================= */
.collapsible .collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.collapsible.expanded .collapse-content {
    max-height: 500px;
}

.collapsible .collapse-icon {
    transition: transform var(--transition-normal);
}

.collapsible.expanded .collapse-icon {
    transform: rotate(180deg);
}

.card-header.clickable {
    cursor: pointer;
}

.card-header.clickable:hover {
    background: var(--surface-200);
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.resource-group h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.resource-group ul {
    list-style: none;
}

.resource-group li {
    margin-bottom: 8px;
}

.resource-group a {
    color: var(--accent-500);
    text-decoration: none;
    font-size: 14px;
}

.resource-group a:hover {
    text-decoration: underline;
}

/* Backup forecast grid */
.backup-forecast-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.backup-day {
    text-align: center;
    padding: 16px;
    background: var(--surface-200);
    border-radius: var(--radius-md);
}

.backup-day-name {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.backup-temps {
    font-weight: 600;
    color: var(--text-primary);
}

/* =============================================================================
   BADGE
   ============================================================================= */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--success-light);
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1400px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 1200px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-tips {
        position: static;
    }
    
    .map-page-layout {
        grid-template-columns: 1fr;
    }
    
    .weather-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .forecast-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .content-area {
        padding: 20px;
    }
    
    .top-bar {
        padding: 0 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .filters-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group select {
        width: 100%;
    }
    
    .forecast-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .source-status-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .backup-forecast-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================================================
   MOBILE-ONLY STYLES (Hidden on desktop)
   ============================================================================= */

/* Mobile Menu Button - Hidden on desktop */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

.mobile-menu-btn.active {
    background: var(--accent-500);
}

.mobile-menu-btn.active i::before {
    content: "\f00d"; /* Font Awesome times icon */
}

/* Sidebar Overlay - Hidden on desktop */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.sidebar-overlay.active {
    opacity: 1;
}

/* Sidebar Close Button - Hidden on desktop */
.sidebar-close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sidebar-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =============================================================================
   TABLET/MOBILE RESPONSIVE (< 1024px)
   ============================================================================= */
@media (max-width: 1024px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Show sidebar overlay */
    .sidebar-overlay {
        display: block;
        pointer-events: none;
    }
    
    .sidebar-overlay.active {
        pointer-events: auto;
    }
    
    /* Show sidebar close button */
    .sidebar-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Sidebar slides in from left */
    .sidebar {
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        box-shadow: none;
    }
    
    .sidebar.open {
        transform: translateX(0);
        box-shadow: var(--shadow-xl), 0 0 60px rgba(0, 0, 0, 0.3);
    }
    
    /* Main content takes full width */
    .main-content {
        margin-left: 0;
    }
    
    /* Adjust top bar for mobile menu button */
    .top-bar {
        padding-left: 80px;
    }
    
    /* Stack forecast days */
    .forecast-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================================================
   PHONE RESPONSIVE (< 480px)
   ============================================================================= */
@media (max-width: 480px) {
    /* Smaller mobile menu button */
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        top: 16px;
        left: 16px;
        font-size: 18px;
    }
    
    /* Adjust top bar */
    .top-bar {
        height: auto;
        padding: 16px;
        padding-left: 70px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .page-title h1 {
        font-size: 20px;
    }
    
    .page-subtitle {
        font-size: 12px;
    }
    
    .top-bar-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .location-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Content area */
    .content-area {
        padding: 16px;
    }
    
    /* Metrics - single column on very small screens */
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .metric-card {
        padding: 16px;
    }
    
    .metric-value {
        font-size: 24px;
    }
    
    .metric-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    /* Forecast strip - 2 columns on phone */
    .forecast-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .forecast-day {
        padding: 12px 6px;
    }
    
    .day-icon {
        font-size: 24px;
    }
    
    /* Cards */
    .card-header {
        padding: 16px;
    }
    
    .card-header h2 {
        font-size: 14px;
    }
    
    .card-body {
        padding: 16px;
    }
    
    /* Weather map */
    .weather-map {
        height: 300px;
    }
    
    .full-weather-map {
        height: 400px;
    }
    
    /* Site cards */
    .site-card {
        border-radius: var(--radius-md);
    }
    
    .site-name {
        font-size: 16px;
    }
    
    .site-address {
        font-size: 13px;
    }
    
    /* Buttons - larger touch targets */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .btn-icon {
        width: 44px;
        height: 44px;
    }
    
    /* Form inputs - larger touch targets */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    /* Checkboxes - larger touch targets */
    .checkbox-custom {
        width: 26px;
        height: 26px;
    }
    
    /* Alert banners */
    .alert-banner {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .alert-icon {
        width: 40px;
        height: 40px;
    }
    
    .alert-content h3 {
        font-size: 14px;
    }
    
    .alert-content p {
        font-size: 13px;
    }
    
    .alert-action {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }
    
    /* Snow day cards */
    .snow-alert-item {
        padding: 12px;
    }
    
    /* Map page */
    .route-map-container {
        height: 500px;
    }
    
    /* Backup forecast */
    .backup-forecast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Flash messages */
    .flash-message {
        padding: 12px 16px;
        font-size: 13px;
    }
}
