body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.tab-btn.active {
    background-color: white;
    color: black;
}

.search-result-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.forecast-card {
    transition: transform 0.2s, background-color 0.2s;
}

.forecast-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.08);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.storm-warning {
    animation: pulse-glow 2s infinite;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, rgba(30, 30, 30, 0.8) 25%, rgba(50, 50, 50, 0.8) 50%, rgba(30, 30, 30, 0.8) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

select option {
    background-color: #141414;
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}
