/* Additional styles for fullscreen map and radar controls */

/* Fullscreen Map Adjustments */
#map {
    width: 100%;
    height: 100vh;
    z-index: 0;
}

/* Radar Time Slider Styling */
#radarSlider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #1e293b 0%, #3b82f6 50%, #10b981 100%);
    outline: none;
    cursor: pointer;
}

#radarSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    border: 3px solid white;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    transition: transform 0.1s;
}

#radarSlider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

#radarSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    border: 3px solid white;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

/* Glass panel improvements */
.glass-panel {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Layer button active states */
.layer-btn.active {
    border-color: #06b6d4 !important;
    background: rgba(6, 182, 212, 0.2) !important;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.layer-btn.radar-active {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.2) !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Smooth page transitions */
.page-transition {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar for side panels */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Status indicators */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-live {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Precipitation intensity colors */
.precip-light { background: rgba(59, 130, 246, 0.4); }
.precip-moderate { background: rgba(59, 130, 246, 0.7); }
.precip-heavy { background: rgba(147, 51, 234, 0.8); }
.precip-extreme { background: rgba(236, 72, 153, 0.9); }