/* Grundlayout für Desktop & Notebook */
body {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    background-color: #ffffff;
}

/* Wurzel der App */
.app-root {
    background-color: #ffffff;
}

/* Zentrierte Spalte */
.app-container {
    max-width: 1400px;        /* gut für Notebooks + große Monitore */
    margin: 0 auto;
    padding: 24px 32px;       /* angenehmer Rand rechts/links */
}

/* Titel / Einleitung */
.app-title {
    color: #ffffff;
    background-color: #376179;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 0 0 12px;
    font-size: 1.8rem;        /* skaliert gut über verschiedene Breiten */
}

.app-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #376179;
    margin: 0 0 18px;
}

/* Steuerleiste (Radio-Buttons) */
.control-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 16px;
}

.control-title {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Iframe mit Karte: 70% der Fensterhöhe, volle Breite der Spalte */
.map-frame {
    width: 100%;
    height: 80vh;      /* vorher 70vh */
    min-height: 520px; /* sorgt dafür, dass die Karte im Iframe nicht „zusammengedrückt“ wird */
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    overflow: hidden;
}

/* --- optional: auf sehr großen Monitoren noch etwas luftiger --- */
@media (min-width: 1600px) {
    .app-container {
        max-width: 1600px;
        padding: 32px 48px;
    }

    .app-title {
        font-size: 2rem;
    }

    .map-frame {
        height: 75vh;
    }
}
