
  .slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
    height: 400px; /* Ensures fixed height */
  }

  .mySlides {
    width: 420px;
    height: 400px;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: opacity 1s ease-in-out;
  }

  .mySlides.active {
    opacity: 1;
    z-index: 1;
  }

  .prev-icon, .next-icon {
    background-color: rgba(240, 96, 35, 0.9);
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: 40px;
    padding:10px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 20px !important;
    user-select: none;
    transition: 0.6s ease;
  }

  .prev-icon {
    right: 95%;
  }

  .next-icon {
    left: 95%;
  }

  .prev-icon:hover, .next-icon:hover {
    color: white;
    text-decoration: none;
  }


 @media (max-width: 660px) {
      .prev-icon, .next-icon {
      width: 30px;
      font-size: 25px;
    }
   
    .prev-icon {
      right: 98%;
    }

    .next-icon {
      left: 98%;

   }
   
   
   .mySlides {
      width: 350px;
      height: 400px;
    }


}




  @media (max-width: 560px) {
    .slideshow-container {
      height: 350px;
    }

    .mySlides {
      width: 300px;
      height: 350px;
    }

    .prev-icon, .next-icon {
      width: 30px;
      font-size: 25px;
    }

    .prev-icon {
      right: 98%;
    }

    .next-icon {
      left: 98%;
    }
  }

  @media (max-width: 400px) {
    .slideshow-container {
      height: 280px;
    }

    .mySlides {
      width: 220px;
      height: 280px;
    }

    .prev-icon, .next-icon {
      width: 28px;
      font-size: 22px;
    }
  }



.slideshow-container.no-images {
    display: none !important;
}

