/* Ensure you include the necessary CSS to style the gallery */
.slider-container, .slider-container-thumbnails {
  overflow: hidden;
  position: relative;
}

.slider-wrapper, .slider-wrapper-thumbnails {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    height: auto;
}

.mySlides {
  display: none;
}

.active, .demo:hover {
  opacity: 1;
}

.cursor {
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0, 0, 0, 0.5); /* Making buttons visible */
  z-index: 1; /* Ensuring buttons are on top */
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 20;
      background-color: rgba(0, 0, 0, 0.5); /* Making buttons visible */
  text-align: center;
}

.row {
  display: flex;
  justify-content: center;
}

.column {
  flex: 0 0 calc(100% / 10);
}

.column img {
  width: 100%;
  height: auto;
  display: block;
}

