/* Weather Widget Styles */
.weather-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.weather-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.weather-location h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.location-selector {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-selector:hover {
    background: rgba(255, 255, 255, 0.3);
}

.location-selector option {
    color: #333;
}

.weather-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.weather-temp-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.weather-icon {
    font-size: 4rem;
}

.weather-temp {
    font-size: 3.5rem;
    font-weight: bold;
}

.weather-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.weather-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.weather-detail-icon {
    font-size: 1.5rem;
}

.weather-detail-content {
    display: flex;
    flex-direction: column;
}

.weather-detail-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.weather-detail-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.weather-loading {
    text-align: center;
    padding: 2rem;
    font-size: 1.1rem;
}

.weather-error {
    background: rgba(220, 53, 69, 0.9);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .weather-main {
        flex-direction: column;
        text-align: center;
    }
    
    .weather-temp {
        font-size: 2.5rem;
    }
    
    .weather-details {
        grid-template-columns: 1fr;
    }
}

