/* Grundlegende Stil-Anpassungen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

/* Das Overlay, das den gesamten Bildschirm abdeckt */
.overlay {
    position: fixed; /* Fixiert, um den gesamten Viewport abzudecken */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Halbdurchsichtiger Hintergrund */
    display: flex; /* Flexbox für die Zentrierung des Inhalts */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Der sichtbare Kasten innerhalb des Overlays */
.overlay-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Der Schließen-Button (das "x") */
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2em;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover {
    color: #333;
}