.carousel {
  max-width: 900px; /* Largeur d'un bloc */
  height: 250px;
  overflow: hidden; /* On cache ce qui dépasse */
  /*border: 2px solid #333;*/
  margin: 10px auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out; /* L'animation fluide */
  width: 100%;
}

.carousel-item {
  min-width: 100%; /* Chaque bloc prend toute la largeur du parent */
  height: 250px;
  display: block;
  align-items: center;
  justify-content: center;
  /*color: white;*/
}

.dots-container {
  text-align: center;
  margin-top: 2px;
  margin-bottom: 2px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.dot.active {
  background-color: #333; /* Couleur du point sélectionné */
  transform: scale(1.2);
}