/* Backdrop-Stil */
.cf7-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999999;
    display: none; /* Standardmäßig versteckt */
}

/* Modal-Stil */
.cf7-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 600px; /* Maximalbreite des Modals */
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99999999999; /* Stellt sicher, dass das Modal über dem Backdrop liegt */
    display: none; /* Standardmäßig versteckt */
}

/* Modal-Inhalt-Stil */
.cf7-modal-content {
    margin-bottom: 20px; /* Abstand zum Schließen-Button */
}

/* Schließen-Button-Stil */
.cf7-modal button {
    display: block;
    margin: auto;
    padding: 10px 20px;
    cursor: pointer;
}
