body {
    font-family: Arial, sans-serif;
    background-color: #2980b9;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #fff;
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #2980b9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#weatherInfo {
    margin-top: 20px;
}

/* FORECAST SUR UNE LIGNE - START */
.forecast-container {
    display: flex;
}

.forecast-day {
    flex: 1;
    text-align: center;
    margin: 0 10px;
}

/* FORECAST SUR UNE LIGNE - END */

.day {
   font-size: 20px;
   text-align: center;

}

.temperature {
   font-size: 12px;
   text-align: center;
}

.condition {
   font-size: 16px;
   text-align: center;
}


.picto img {
   width: 70%;
   display: block;
   margin: 0 auto;
}

.current_picto {
   width: 20%;
   display: block;
   margin: 0 auto;
}

/* Ajoutez cette règle dans votre fichier style.css */
ul[class^="awesomplete"][hidden], ul[class^="awesomplete"] {
    background-color: blue !important; /* Changez la couleur de fond à votre choix */
}