.slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: black;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ← WICHTIG! */
  object-position: center center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slideshow img.active {
  opacity: 1;
}


/* Exit‑Button oben rechts */
.exit-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 40px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 5px 15px;
  cursor: pointer;
  z-index: 9999;
  border-radius: 8px;
}



/* Pause‑Icon links unten, klein und unauffällig */
.pause-icon {
  position: fixed;
  bottom: 20px;        /* Abstand vom unteren Rand */
  left: 20px;          /* Abstand vom linken Rand */
  font-size: 40px;     /* deutlich kleiner */
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;       /* wird per JS ein-/ausgeblendet */
  pointer-events: none; /* Klicks gehen durch das Icon hindurch */
}
