﻿.popup_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  z-index: 10000;
  background-color: rgb(160, 160, 160, 0.9);
}

.popup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%; /* Angepasste Breite */
    height: auto; /* Höhe passt sich automatisch an den Inhalt an */
    max-width: 600px; /* Maximale Breite */
}

.close_button {
  position: relative;
  width: max-content;
  height: 50px;
  align-self: end;
  border: 1px solid black;
  margin: 10px 0 5px 0;
  background-color: white;
  cursor: pointer;
  font-size: 15px;
  color: blue;
}

.image {
    max-width: 100%; /* Bild passt sich der Breite an */
    max-height: 80%; /* Bildhöhe wird ebenfalls begrenzt */
    object-fit: contain; /* Beibehaltung des Seitenverhältnisses */
}


@media only screen and (max-width: 480px) {
    .popup {
        width: 90%; /* Popup ist auf kleineren Bildschirmen breiter */
    }
    .image {
        max-width: 100%;
    }
}