.meteo-widget-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 0 auto;
    font-family: 'Roboto', Arial, sans-serif;
    max-width: 900px;
}
.meteo-card {
    background: #f7f7f7;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
    padding: 14px 8px 8px 8px;
    color: #e60000;
    text-align: center;
    border: 0px solid #F9733F;
}
.meteo-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.meteo-icon {
    font-size: 1.9em;
    margin-right: 6px;
}
.meteo-ville-etat {
    text-align: left;
}
.meteo-ville {
    font-size: .9em;
    font-weight: bold;
    color: #000;
    line-height: 2.1;
}
.meteo-etat {
    font-size: 0.8em;
    color: #666;
}
.meteo-temp {
    font-size: 1.5em;
    font-weight: bold;
    color: #e60000;
    margin: 0 0 6px 0;
}
.meteo-details {
    background: #eee;
    border-radius: 10px;
    padding: 8px 6px;
    margin-bottom: 8px;
    text-align: left;
}
.meteo-detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    color: #000;
    font-size: 0.75em;
}
.meteo-detail-row:last-child { margin-bottom: 0; }
.meteo-detail-icon {
    margin-right: 6px;
    font-size: 1em;
}
