/* Styles communs pour tous les boutons */
.btn-common {
  background-color: #0D5F73;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  display: block;
  width: fit-content;
  margin: 3rem auto;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.btn-common:hover {
  background-color: #083f4c;
}



/* Bouton spécifique : Voir tous */
.btn-voir-tous {
  background-color: #005F73;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  display: block;
  width: fit-content;
  margin: 3rem auto;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.btn-voir-tous:hover {
  background-color: #094656;
}

.btn-commande {
  background-color: #0D5F73;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.btn-commande:hover {
  background-color: #083f4c;
}
