/* Das Overlay-Container-Styling */
#info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Verdunkelter Hintergrund */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden; /* Anfangs ausgeblendet */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Sichtbarkeit aktivieren */
#info-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Innere Inhalte des Overlays */
.overlay-content {
    background: #fff;
    padding: 20px;
    /* border-radius: 8px; */
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: left;
}

/* Schließen-Button oben rechts */
#overlay-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-align: center;

    background: #CE2405;
    border-end-end-radius: 0;
}

#overlay-close-btn:hover {
    background: #cc0000;
}