#preview-modal-slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
  max-height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide {
  display: none;
  max-height: 30rem;
  text-align: center;
}

.slide img {
  max-height: 30rem;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px;
  user-select: none;
  background-color: rgba(52, 58, 64, 0.8);
  text-decoration: none;
  z-index: 10; /* Ensure buttons stay on top */
}

.next {
  right: 0;
}

.prev {
  left: 0;
}

.prev:hover, .next:hover {
  color: white;
  text-decoration: none;
}

.prev:active, .next:active {
  color: rgba(52, 58, 64, 0.5);
  text-decoration: none;
}
