/* Custom CSS voor fade effecten en sleepgedrag */
    .carousel-container {
      position: relative;
      width: 100%;
      /* max-width: 800px; */
      min-height: 550px;
    height:auto;    
      margin: auto;
      overflow: hidden;
      cursor: grab;
    }

    @media (max-width:800px){
        .carousel-container { height:1000px;    }
}
 @media (min-width:801px) AND (max-width:1024px){
        .carousel-container { height:700px;    }
}
@media (min-width:1025px) AND (max-width:1500px){
        .carousel-container { height:600px;    }
}

    
    .carousel-container.dragging {
      cursor: grabbing;
    }
    
    .carousel-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    /*    
      display: flex;
      justify-content: center;
      align-items: center;
        */
      user-select: none;
      opacity: 0;
      transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
      pointer-events: none;
      transform: translateX(0);
    }
    
    .carousel-slide.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(0);
    }
    
    .carousel-slide.next {
      transform: translateX(100%);
    }
    
    .carousel-slide.prev {
      transform: translateX(-100%);
    }
    
    .carousel-slide.fade-in {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    
    .carousel-slide.fade-out {
      opacity: 0;
      pointer-events: none;
    }
    
    .carousel-nav {
      position: absolute;
      top: 50%;
      /* transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none; */
      padding: 10px 15px;
      cursor: pointer;
      /* border-radius: 50%;
      font-size: 18px; */
      z-index: 10;
      transition: background-color 0.3s;
    }
    
    .carousel-nav:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }
    
/*
    .carousel-nav.prev {
      left: 10px;
    }
    
    .carousel-nav.next {
      right: 10px;
    }
    */

    .carousel-indicators {
      position: absolute;
    left: -999999px;    
      bottom: 20px;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
      z-index: 10;
    }
    
    .carousel-indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #ccc;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .carousel-indicator.active {
      background-color: #000;
    }