.ulw-widget {
    font-family: Arial, sans-serif;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ulw-widget h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.ulw-location-info, .ulw-weather-info {
    margin-bottom: 20px;
}

.ulw-current-location, .ulw-current-time {
    margin: 10px 0;
    font-size: 16px;
}

.ulw-current-weather {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

#ulw-current-temp {
    font-size: 32px;
    font-weight: bold;
}

#ulw-weather-icon img {
    width: 50px;
    height: 50px;
}

.ulw-forecast {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.ulw-forecast-day {
    flex: 1;
    min-width: 60px;
    text-align: center;
    padding: 8px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ulw-forecast-dayname {
    font-weight: bold;
    margin-bottom: 5px;
}

.ulw-forecast-temp {
    font-size: 14px;
}