/* Video Slider Container */
.video-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Slider Base Styles */
.video-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #00000000;
  border-radius: 10px;
}

/* Individual Slides */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none; /* Add this line */
}

.slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto; /* Add this line */
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1.5rem;
}

/* Make sure video controls are clickable */
/* .video-wrapper video {
  pointer-events: auto;
} */

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto; /* Ensure arrows are always clickable */
}

.slider-arrow:hover {
  background: rgba(0,0,0,0.8);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  pointer-events: auto; /* Ensure dots are always clickable */
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: auto; /* Ensure dots are always clickable */
}

.dot.active, .dot:hover {
  background-color: white;
}