* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, Arial, Helvetica, sans-serif; 
  background-color: rgb(255, 255, 255);
}
.climat {
  max-width: 70%;   
  margin: 0 auto;     
  padding: 1rem;    
  box-sizing: border-box;
}

/* Titre principal */
.climat__intro {
  text-align: center;  
  margin-bottom: 2rem; 
}
.climat__form {
  display: flex;
  justify-content: center; 
  gap: 1rem;              
  margin: 2rem 0;
  flex-wrap: wrap;         
  margin-bottom: 2rem;
}


.climat__group {
  display: flex;
  flex-direction: row; 
  align-items: center; 
  border: 1px solid #d0d2d6; 
  border-radius: 5px;
  padding: 10px; 
  background-color: #445c87; 
}
.climat__select{
  padding: 5px;
  border: none; 
  border-radius: 5px;
}
.climat__label{
  color: white;
  padding-right: 10px;
}


.table-climat {
  width: 75%;
  font-size: 14px;
  text-align: center;
  border-collapse: collapse;
  position: sticky;

}
.mois{
  position: sticky;
  top: 0;
}
.table-climat th {
  background-color: #f8f9fa;
  font-weight: bold;
  padding: 8px;
  border: 1px solid #ddd;
}

.table-climat td {
  padding: 8px;
  border: 1px solid #ddd;
}

.table-climat tr:nth-child(even) {
  background-color: #e9ecef; 
}

.table-climat tr:hover {
  background-color: #ced4da; 
}

.table-climat th:first-child {
  text-align: left; 
}
