.simple-carousel {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
}

.simple-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.simple-carousel-item {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.simple-carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.simple-carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.simple-carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
  cursor: pointer;
}

.simple-carousel-indicator.active {
  background-color: rgba(255, 255, 255, 0.9);
}

.simple-carousel-control-prev,
.simple-carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
}

.simple-carousel-control-prev {
  left: 10px;
}

.simple-carousel-control-next {
  right: 10px;
}