        body {  font-family: "Segoe UI", Arial, Helvetica, sans-serif; background: #f0f2f5; color: #1a202c; }
       /*.container { width: 95%; max-width: 1000px; margin: auto; background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }*/
   
          
        h2 { border-bottom: 2px solid #edf2f7; padding-bottom: 10px; margin-top: 40px; }
        
        /* Style du graphique */
        .chart-box { margin-bottom: 40px; height: 300px; }

        /* Style des vignettes corrigé pour la visibilité */
        .grid-previsions { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
            gap: 15px; 
            margin-top: 20px; 
        }

        .day-card { 
            background: #ffffff; 
            border: 1px solid #e2e8f0;
            border-radius: 12px; 
            padding: 15px; 
            text-align: center;
            transition: transform 0.2s;
        }
        
        .day-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

        /* Fond contrasté pour l'icône */
        .icon-wrapper { 
            background: #2d3748; /* Bleu-gris foncé pour faire ressortir les icônes claires */
            border-radius: 50%; 
            width: 60px; 
            height: 60px; 
            margin: 10px auto; 
            display: flex; 
            align-items: center; 
            justify-content: center;
        }
        
        .icon-wrapper img { width: 50px; height: 50px; }

        .temp-val { font-size: 1.4em; font-weight: bold; color: #2b6cb0; }
        .date-val { font-weight: bold; font-size: 0.9em; color: #4a5568; }
        .desc-val { font-size: 0.8em; color: #718096; display: block; height: 32px; overflow: hidden; }