.angie-weather-widget {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    border-radius: 20px;
    padding: 35px;
    color: #fff;
    font-family: sans-serif;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}
.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.weather-header h2 {
    margin: 0;
    font-size: 24px;
}
.weather-current {
    text-align: center;
    margin-bottom: 30px;
}
.weather-current .temp {
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
}
.weather-details {
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.weather-forecast {
    display: flex;
    justify-content: space-between;
}
.forecast-day {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 10px;
    width: 30%;
}
.forecast-day span {
    display: block;
}
