/* ... existing styles ... */

/* Weather Widget */
.weather-widget {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease;
}

.weather-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.weather-details {
    text-align: left;
    color: var(--text-main);
}

.weather-temp {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.weather-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: capitalize;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dark Mode Weather */
body.dark-mode .weather-widget {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .weather-details {
    color: #fff;
}
