body {
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
  display: flex;
  justify-content: center;
  padding: 0px;
}

/* Container */
.slideshow {
  max-width: 1100px;
  width: 100%;
}

/* Großes Bild */

.main-image img {
  width: 100%;
  /*height: clamp(250px, 50vw, 500px);*/
  height: auto;
  object-fit: cover;
  border-radius: 0px;
}

/* Thumbnail-Leiste */
.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  justify-content: left; /* 👈 hier für die Ausrichtung */
}

/* Thumbnails */
.thumb {
  height: 60px;              /* 👈 hier stellst du die Höhe ein */
  width: auto;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
  border-radius: 0px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}


/*.thumb {
  height: clamp(60px, 10vw, 80px);
  width: clamp(80px, 15vw, 120px);
}*/
/* Hover */
.thumb:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Aktives Bild */
.thumb.active {
  opacity: 1;
  border: 3px solid #2196F3;
}


