﻿.slideshow-container {
      position: relative;
      max-width: 1000px;
      margin: auto;
    }

    .slide-img {
      position: absolute;
      width: 100%;
      height: auto;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 1;
    }

    .slide-img.active {
      opacity: 1;
      z-index: 2;
    }

    .dots {
      display: flex;
      justify-content: center;
      margin-top: 0px;
      gap: 10px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #E9E3DC;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .dot.active {
      background-color: #333;
    }

    /* Containerhöhe sichern */
    .slideshow-wrapper {
      position: relative;
      width: 100%;
      padding-top: 66.66%; /* 3:2 Verhältnis, kann angepasst werden */
    }

    .slideshow-container img {
      max-width: 100%;
      height: auto;
      position: absolute;
      top: 0;
      left: 0;
    }
    /* Media Queries */
@media (max-width: 768px) {
.slideshow-container {
      width: 510px;
}
} 