
.content-div {
  min-height: 100px;
}
hr {
  border: none;
  height: 2px;
  background-color: #d6cece;
  margin: 20px 0;
}
.container {
    display: flex;
}

.fixed-width {
    min-width: 100px;
    display: flex;
    justify-content: center; /* Centrage horizontal */
    align-items: center; /* Centrage vertical */
    background-color: lightblue;
}

.counter {
    font-size: 3rem; /* Ajuste la taille du compteur */
    font-weight: bold;
}

.flexible-width {
  flex-grow: 1; /* Prend toute la place restante */
  background-color: lightgreen;
}
.right-fixed-width {
  min-width: 150px; /* Largeur fixe à droite */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: lightcoral;
}