/* Météo OpenWeatherMap Plugin Styles - Simple Design */

.owm-meteo-widget {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.owm-meteo-icon-simple {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.owm-meteo-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.owm-meteo-label {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.owm-meteo-temp-line {
    font-size: 20px;
    font-weight: 300;
    color: #999;
    margin: 0;
}

.owm-meteo-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

/* Icônes météo - Style simple avec emojis ou icônes personnalisées */
.icon-sun::before { 
    content: "☀️"; 
    /* Alternative texte si vous avez une font icon:
    font-family: 'your-icon-font';
    content: "\e800";
    */
}
.icon-cloudy::before { content: "⛅"; }
.icon-cloud3::before { content: "☁️"; }
.icon-cloud4::before { content: "🌥️"; }
.icon-rainy2::before { content: "🌧️"; }
.icon-lightning::before { content: "⛈️"; }
.icon-lightning2::before { content: "🌩️"; }
.icon-snowy3::before { content: "🌨️"; }
.icon-windy3::before { content: "🌬️"; }
.icon-wind::before { content: "💨"; }
.icon-weather3::before { content: "🌫️"; }
.icon-weather4::before { content: "🌦️"; }

/* Si vous utilisez une font icon personnalisée, décommentez et adaptez :
.owm-meteo-icon-simple::before {
    font-family: 'votre-icon-font';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}
*/

/* Responsive */
@media (max-width: 480px) {
    .owm-meteo-widget {
        gap: 10px;
    }
    
    .owm-meteo-icon-simple {
        font-size: 36px;
    }
    
    .owm-meteo-label {
        font-size: 14px;
    }
    
    .owm-meteo-temp-line {
        font-size: 16px;
    }
}
