.carousel-container {
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  margin: auto;
  display: block;
}

/* Dots ABOVE the image */
.dots {
  text-align: center;
  margin-bottom: 10px;  /* space between dots and image */
}

.dot {
  height: 14px;
  width: 14px;
  background-color: gray;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin: 0 6px;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: dodgerblue;
}

.dot:hover {
  transform: scale(1.2);
}
