	.slideshow-container {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9; /* ✅ Makes it responsive */
  max-height: 100vh;
}


    .mySlides {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .mySlides.active {
      opacity: 1;
      z-index: 1;
      position: relative;
    }

    .mySlides img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      color: white;
      font-weight: bold;
      font-size: 18px;
      user-select: none;
      transform: translateY(-50%);
      background-color: rgba(0,0,0,0.5);
    }

    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }

    .prev {
      left: 0;
      border-radius: 0 3px 3px 0;
    }

    .text {
      color: #f2f2f2;
      font-size: 15px;
      padding: 8px 12px;
      position: absolute;
      bottom: 8px;
      width: 100%;
      text-align: center;
      background: rgba(0,0,0,0.4);
    }

    .dot-container {
      text-align: center;
      margin-top: 10px;
    }

    .dot {
      cursor: pointer;
      height: 15px;
      width: 15px;
      margin: 0 2px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
    }

    .dot.active, .dot:hover {
      background-color: #717171;
    }

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
	

	@media screen and (max-width: 768px) {
  .slideshow-container {
    height: auto;
  }

  .mySlides img {
    height: auto;
    max-height: 100vh;
  }
}