.weather-widget {
    font-family: 'Arial', sans-serif;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: linear-gradient(135deg, #72b1e3, #4b79cf);
    color: white;
}

.weather-header {
    padding: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
}

.weather-header h2 {
    margin: 0;
    font-size: 24px;
}

.current-weather {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.temp-info {
    text-align: center;
}

.current-temp {
    font-size: 48px;
    font-weight: bold;
}

.weather-description {
    text-transform: capitalize;
    margin-top: 5px;
}

.weather-icon img {
    width: 80px;
    height: 80px;
}

.weather-details {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
}

.detail {
    text-align: center;
}

.detail-value {
    font-size: 18px;
    font-weight: bold;
}

.detail-label {
    font-size: 12px;
    opacity: 0.8;
}

.forecast {
    display: flex;
    overflow-x: auto;
    padding: 15px 10px;
    background-color: rgba(0, 0, 0, 0.1);
}

.forecast-day {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 10px;
    min-width: 60px;
}

.forecast-date {
    font-size: 12px;
    margin-bottom: 5px;
}

.forecast-icon img {
    width: 40px;
    height: 40px;
}

.forecast-temp {
    font-size: 16px;
    font-weight: bold;
}

.loading {
    text-align: center;
    padding: 30px;
}

/* Reszponzív beállítások */
@media (max-width: 480px) {
    .weather-widget {
        max-width: 100%;
    }
    
    .current-temp {
        font-size: 36px;
    }
    
    .weather-icon img {
        width: 60px;
        height: 60px;
    }
    
    .detail-value {
        font-size: 16px;
    }
}
