.highlight-shadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5) !important;
  background-color: #000000;
  transition: box-shadow 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

body {
  background-color: white;
}

.ver-button-style {
  background-color: white;
  color: black;
  border: 1px solid black;
  border-radius: 0; /* Not rounded */
  padding: 5px 10px; /* Adjust padding as needed */
  text-decoration: none; /* Remove underline for anchor tag */
  display: inline-block; /* Make it behave like a button */
  margin-top: 8px; /* Add some space from the photo */
}

.ver-button-style:hover {
  background-color: #f8f9fa; /* Slightly darker on hover */
  color: black;
  border-color: #343a40;
}

/* Image Slider Styles */
.image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-slider .slide {
  display: none; /* Hidden by default */
  position: relative;
}

.image-slider .slide.active {
  display: block; /* Show active slide */
}

.image-slider .slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  text-align: center;
  font-size: 0.8em;
}

.image-slider .prev-slide,
.image-slider .next-slide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 8px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
  border: none;
}

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

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