.weather-widget {
    max-width: 380px;
    margin: auto;
    padding: 20px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

.weather-header {
    text-align: center;
    margin-bottom: 10px;
}

.weather-date {
    font-size: 16px;
    opacity: 0.9;
}

.weather-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-icon {
    font-size: 48px;
    margin-right: 10px;
}

.weather-temp {
    font-size: 42px;
    font-weight: bold;
}

.weather-details {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 10px;
}