/* GALLERY SLIDESHOW STYLES */
.slideshow-container {
    position: relative;
    max-width: 100%;       
    height: auto;         
    background-color: #000; 
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.gallery_slides img {
    width: 100%;
    height: 600px;  
    object-fit: cover;    
    display: block;
    border-radius: 12px;
}


/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: background 0.3s;
  user-select: none;
  z-index: 10;
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Dots */
.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active, .dot:hover {
  background-color: #717171;
}
