.terminbuchung-overlay {
    position: fixed !important; /* Es soll mitscrollen/feststehen */
    z-index: 999999 !important;  /* Höher als Slider und Header */
    background-color: rgba(0, 0, 0, 0.7) !important; /* Dunkler Hintergrund für Fokus */
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: none; /* Erstmal verstecken, falls es von Anfang an da ist */
}

/* Falls das Iframe selbst noch gestylt werden muss */
#terminbuchung-iframe {
    z-index: 1000000 !important;
}
/* Die Basis für beide Buttons */
.custom-praxis-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 0.4px;
    white-space: nowrap;
    background-color: #EEE; 
    transition: all 0.3s ease; /* Das macht den Effekt weich! */
}

.mb-mobile-20 {
    margin-bottom: 0;
}

/* Sobald der Bildschirm schmaler als 768px wird (Mobile) */
@media (max-width: 767px) {
    .mb-mobile-20 {
        margin-bottom: 20px !important;
    }
}