  #popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: transparent;
    justify-content: center;
    align-items: center;
    z-index: 9998;
  }

  #popup {
    background: transparent;
    width: 90%;
    max-width: 600px;
    max-height: 600px;
    padding: 20px 20px 60px; /* Platz für Button unten */
    border-radius: 10px;
    position: relative;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
  }

  #popup.show {
    opacity: 1;
    transform: translateY(0);
  }
  #popup img {
    width:100%;
  }

  /* Schließen-Button unten mittig */
  #popup-close {
    position: absolute;
    bottom: 6em;
    left: 50%;
    transform: translateX(-50%);
    background: #eee;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
  }

  #popup-close:hover {
    background: #ddd;
  }