* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}

/* Jede Slide verstecken, nur die aktive wird angezeigt */
.mySlides {display: none}

/* Bilder sollen zentriert und responsive sein */
img {vertical-align: middle; max-width: 100%;}

/* Slideshow-Container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Prev und Next Buttons */
.prev, .next {
  cursor: pointer;
  padding: 8px 12px;
  color: rgb(167, 159, 159);
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
  user-select: none;
}

/* Hover-Effekt für Buttons */
.prev:hover, .next:hover {
/* background-color: rgba(231, 6, 6, 0.1); */
  border-radius: 50%;
}

/* Dots */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Aktive Dot oder beim Hover */
.active, .dot:hover { background-color: #717171; }

/* Container für Dots + Buttons */
.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* Kleinere Darstellung für mobile Geräte */
@media only screen and (max-width: 600px) {
  .prev, .next {font-size: 16px; padding: 6px;}
  .dot {height: 12px; width: 12px;}
}
