/* Video Slider Styles */
.video-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #000;
}

.video-slide {
    display: none;
    width: 100%;
}

.video-slide video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.video-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.video-slider .prev-slide {
  left: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-slider .next-slide {
    right: 10px;
    width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-slider button:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .video-slider {
        max-width: 100%;
    }

    .video-slider button {
        padding: 8px;
    }
}