h4 {
  color: #16579c;
  
}
.produit {
  border-radius: 45px;
  box-shadow: 5px 5px 5px rgb(25, 63, 76);
  margin-top: 10px;
  margin-right: 10px;
}
/* couleur du texte pour les erreurs dans les formulaires */
.error {color: #FF0000;}

.header {
  color: rgb(245, 235, 191);
}
.entete {
  font-weight: bold;
}
.ligneSombre { /*couleur pour les lignes paires */
  background-color: #e6f2f8;
}
.ligneClaire { /* couleur pour les lignes impaires */
  background-color: blank;  
}

.button__plus {
  display: block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: #FFF;
  font-size: 30px;
  background-color: #007bff;
  border-radius: 50%;

  box-shadow: 0 6px 10px 0 #0000001a,0 1px 18px 0 #0000001a,0 3px 5px -1px #0003;
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-decoration: none;
  transition: transform 0.3s;
}

.button__plus:hover {
  text-decoration: none;
  color: #FFF;
  transform: scale(1.2);
}