/* 1. Das Overlay (Hintergrund) */
#eip-overlay {
    display: none;
    /* Initial versteckt */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    /* Schicker Unschärfe-Effekt */
    padding: 10px;
    /* Sicherheitsabstand für Mobile */
    box-sizing: border-box;
}

/* 2. Das Popup-Fenster */
#eip-popup {
    position: relative;
    width: 100%;
    max-width: 550px;
    /* Maximale Breite */
    max-height: 95vh;
    /* Verhindert, dass das Popup höher als der Bildschirm wird */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* Erlaubt internes Scrollen NUR wenn nötig, verhindert aber die globale Scrollbar */
    scrollbar-width: none;
    /* Versteckt Scrollbar in Firefox */
    -ms-overflow-style: none;
    /* Versteckt Scrollbar in IE/Edge */
}

/* Versteckt Scrollbar für Chrome, Safari und Opera */
#eip-popup::-webkit-scrollbar {
    display: none;
}

/* 3. Typografie & Abstände optimieren */
#eip-h2 {
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.eip-body {
    line-height: 1.4;
}

/* Formular-Elemente kompakter machen */
#eip-popup input,
#eip-popup textarea,
#eip-popup p {
    margin-bottom: 10px !important;
    /* Weniger Platz zwischen den Feldern */
}

/* 4. Der Schließen-Button */
#eip-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10;
}

#eip-close:hover {
    opacity: 1;
}

/* 5. RESPONSIVE ANPASSUNGEN (Mobile) */
@media (max-height: 700px),
(max-width: 480px) {
    #eip-popup {
        padding: 20px;
    }

    #eip-h2 {
        font-size: 20px !important;
        margin-bottom: 10px;
    }

    .eip-body {
        font-size: 14px !important;
    }

    /* In Enfold: Kontaktformular-Labels verkleinern */
    #eip-popup label {
        margin-bottom: 2px !important;
        font-size: 12px;
    }
}