body {
    box-sizing: border-box;
}

#navLinks {
    z-index: 9999;
}

.glass-effect {
    position: relative;
}

.dark-bg {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.glass-effect {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-card {
    transition: all 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.search-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}