.carousel {
  margin: 0 auto;
  max-width: 900px;
  /* adjust to your preferred slideshow width */
}


.carousel-indicators {
  position: static;
  margin-top: 10px;
  justify-content: center;
  gap: 6px;
}

.carousel-indicators img.indicator-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.carousel-indicators img.indicator-thumb.active {
  opacity: 1;
  border-color: #0d6efd;
  transform: scale(1.05);
}

.carousel-item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 500px;
  /* optional: limits tall images */
  object-fit: contain;
  /* keeps the whole image visible */
}

/* Move carousel control arrows outside the slide area */
#carouselExampleIndicators .carousel-control-prev,
#carouselExampleIndicators .carousel-control-next {
  width: auto;
  /* shrink clickable area */
  top: 50%;
  /* vertical center */
  transform: translateY(-50%);
  /* vertical centering */
  opacity: 0.8;
  /* optional: a subtle transparency */
}


/* optional: adjust arrow icon size */
#carouselExampleIndicators .carousel-control-prev-icon,
#carouselExampleIndicators .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.carousel-indicators li {
  background-color: #60646d;
}