.image-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  overflow: auto; /* Enable scroll if needed */
}

.image-modal-content img {
  display: block;  // stellt sicher, dass das Bild als Block-Element behandelt wird
  margin: auto;    // hilft, das Bild innerhalb des Containers zu zentrieren
  position: relative;  // Standardmäßige Positionierung, keine Verschiebung aus der Mitte
  max-width: 100%;  // Stellt sicher, dass das Bild nicht breiter als sein Container ist
}





.closeprev {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #fff; /* Reinweiß */
  font-size: 50px; /* Erhöhte Schriftgröße */
  cursor: pointer;
  text-shadow: 0 0 5px rgba(0,0,0,0.5); /* Optional: Textschatten für bessere Sichtbarkeit */
}


.closeprev:hover,
.closeprev:focus {
  color: #ccc; /* Light grey color on hover/focus */
  text-decoration: none;
}

