/* === GDPR Consent CSS Komplett-Paket === */

.modal-content {
    height: 60vh; /* Beispielhöhe - anpassen! */
    display: flex;
    flex-direction: column;
}

.modal-body {
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Wichtig! */
    height: calc(100% - 15% - 15%);
}

.fixed-height-section {
    flex-shrink: 0;
    height: 70px; /* Dein fester Wert */
}

.scrollable-section {
    flex-grow: 1;
    overflow-y: auto;
}