@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #0D2B45;
    --green: #2E7D32;
    --light: #F6F7F9;
    --white: #ffffff;
    --text: #10233f;
    --muted: #5f6f80;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, sans-serif;
    background: var(--light);
    color: var(--text);
    padding-bottom: 78px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: var(--blue);
    color: white;
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 800;
    font-size: 18px;
}

.admin-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.content {
    padding: 16px;
}

.hero-ci {
    min-height: 420px;
    border-radius: 0 0 36px 36px;
    margin: -16px -16px 20px -16px;
    padding: 34px 20px;
    color: white;
    background:
        linear-gradient(180deg, rgba(13,43,69,0.95), rgba(13,43,69,0.55)),
        url("/static/img/zug.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.hero-content h1 {
    font-size: 38px;
    line-height: 1.05;
    margin: 8px 0 12px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.5;
}

.eyebrow {
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.hero-ci .eyebrow {
    color: #ffffff;
}

.card,
.stat-card,
.timeline-item {
    background: var(--white);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(13, 43, 69, 0.08);
}

.card h2,
.page-title h1 {
    color: var(--blue);
    margin-top: 0;
}

.card p,
.timeline-item p {
    line-height: 1.6;
}

.accent-card {
    border-left: 6px solid var(--green);
    

}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.history-text-card {
    text-align: justify;
    line-height: 1.6;
}

.history-text-card ul {
    line-height: 1.6;
}
.stat-card {
    margin-bottom: 0;
}

.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-card strong {
    display: block;
    color: var(--blue);
    font-size: 20px;
    line-height: 1.2;
}

.button-white,
.button-dark,
.button-light,
button {
    display: inline-block;
    border: none;
    border-radius: 999px;
    padding: 13px 18px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

.button-white {
    background: white;
    color: var(--blue);
}

.button-dark,
button {
    background: var(--blue);
    color: white;
}

.button-light {
    background: #e9eef2;
    color: var(--blue);
}

.page-title {
    padding: 14px 4px;
}

.page-title h1 {
    font-size: 30px;
    line-height: 1.1;
    margin: 8px 0 18px;
}

.timeline {
    border-left: 4px solid var(--green);
    margin-left: 8px;
    padding-left: 14px;
}

.timeline-item strong {
    color: var(--green);
    font-size: 22px;
}

.form {
    display: grid;
    gap: 10px;
}

.form label {
    font-weight: 700;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 13px;
    border: 1px solid #ccd6dd;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
}

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #dde3e8;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav a {
    text-align: center;
    padding: 13px 4px;
    font-size: 12px;
    text-decoration: none;
    color: var(--blue);
    font-weight: 800;
}


.history-map {
    max-width: 1200px;
    margin: 2rem auto 4rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.history-map-image {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.gallery-overview {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 25px 70px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-card {
    display: block;
    background: #fff;
    color: #1f2937;
    text-decoration: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: .3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.gallery-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    background: #193c73;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
}

.gallery-content {
    padding: 26px;
}

.gallery-content h2 {
    margin: 0 0 12px;
    font-size: 1.6rem;
}

.gallery-content p {
    color: #555;
    line-height: 1.6;
}

.gallery-content small {
    color: #777;
}

.gallery-section {
    max-width: 1300px;
    margin: 40px auto 90px;
    padding: 0 25px;
    scroll-margin-top: 100px;
}

.gallery-section-header {
    margin-bottom: 30px;
}

.gallery-section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.gallery-section-header p {
    max-width: 750px;
    color: #555;
    line-height: 1.7;
}

.gallery-section-header small {
    color: #777;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.gallery-photo {
    margin: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.gallery-photo img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}

.gallery-photo:hover img {
    transform: scale(1.06);
}

.media-document-card {
    min-height: 230px;
    display: grid;
    place-content: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
    background: linear-gradient(145deg, #f7fafc, #eef3f7);
}

.media-document-card strong {
    color: var(--blue);
    font-size: 15px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.media-document-card span {
    color: var(--muted);
    font-size: 13px;
}

.media-document-icon {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    background: #d92d20;
    color: #fff;
    border-radius: 999px;
    padding: 5px 12px;
    font-weight: 800;
    font-size: 12px;
}

.press-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.press-list li {
    line-height: 1.5;
}

.press-list a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.press-list a:hover {
    text-decoration: underline;
}

.press-link-note {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.press-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.press-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.press-media-card {
    margin: 0;
    background: #fff;
    border: 1px solid #e6ecf1;
    border-radius: 12px;
    overflow: hidden;
}

.press-media-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.press-pdf-preview-wrap {
    position: relative;
    height: 140px;
    background: #eef2f6;
}

.press-pdf-preview {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
}

.press-pdf-overlay {
    position: absolute;
    left: 8px;
    bottom: 8px;
    background: rgba(13, 43, 69, 0.9);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    pointer-events: none;
}

.media-document-card--press {
    min-height: 140px;
}

.press-media-name {
    padding: 10px;
    margin: 0;
    font-size: 13px;
    color: var(--blue);
    line-height: 1.4;
    word-break: break-word;
}

.press-image-card {
    margin: 0;
    background: #fff;
    border: 1px solid #e6ecf1;
    border-radius: 12px;
    overflow: hidden;
}

.press-image-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.press-image-card figcaption {
    padding: 10px;
    font-size: 13px;
    color: var(--muted);
    word-break: break-word;
}

html {
    scroll-behavior: smooth;
}

/* ======================================================
   Projektkarte SPNV
====================================================== */

.map-page {
    position: relative;
    margin: -4px 0 0;
}

#map {
    height: calc(100vh - 145px);
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(13, 43, 69, 0.16);
    background: #dde5ea;
}

.leaflet-control-fullscreen a {
    background-color: white;
}

.leaflet-container:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important;
}

.leaflet-container:fullscreen {
    width: 100% !important;
    height: 100% !important;
}

.bahnsteig-marker {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
}

/* Toolbar über Karte */

.map-toolbar {
    position: relative;
    z-index: 2500;
    margin-bottom: 12px;
    display: grid;
    gap: 10px;
}

/* Filter links/oben */

.map-filter-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

/* Steuerung Karte/Satellit/Statistik */

.map-control-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* Buttons */

.filter-btn,
.control-btn {
    background: rgba(255, 255, 255, 0.96);
    color: var(--blue);
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 9px 7px;
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 6px 18px rgba(13, 43, 69, 0.14);
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
}

.control-btn {
    min-height: 46px;
    flex-direction: row;
    font-size: 12px;
}

.filter-btn img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.filter-btn.active,
.control-btn.active {
    border-color: var(--green);
    background: var(--blue);
    color: white;
}

.filter-btn:not(.active) {
    opacity: 0.72;
}

/* Statistik */

.statistik-panel {
    position: absolute;
    right: 14px;
    top: 122px;
    z-index: 2600;
    width: min(280px, calc(100% - 28px));
    background: rgba(255,255,255,0.97);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 10px 28px rgba(13, 43, 69, 0.22);
    display: none;
}

.statistik-panel h3 {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 18px;
}

.statistik-zeile {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 0;
    border-bottom: 1px solid #edf1f4;
    font-size: 14px;
}

.statistik-zeile:last-child {
    border-bottom: none;
}

.statistik-zeile span {
    color: var(--muted);
    font-weight: 600;
}

.statistik-zeile strong {
    color: var(--blue);
    font-weight: 800;
}

/* Gemeinden-Labels */

.gemeinde-label {
    background: rgba(255,255,255,0.92);
    border: 2px solid var(--green);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
    box-shadow: 0 4px 12px rgba(13, 43, 69, 0.22);
}

/* Popup Design */

.popup-content h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 18px;
}

.popup-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 14px;
}

.leaflet-popup-content-wrapper {
    border-radius: 18px;
}

.leaflet-popup-content {
    font-family: "Montserrat", sans-serif;
}

/* Desktop */

@media (min-width: 768px) {
    .map-page {
        margin-top: 0;
    }

    #map {
        height: calc(100vh - 170px);
        min-height: 620px;
    }

    .map-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .map-filter-panel {
        width: auto;
        display: flex;
        gap: 10px;
    }

    .map-control-panel {
        width: auto;
        display: flex;
        gap: 10px;
    }

    .filter-btn {
        min-width: 118px;
        flex-direction: row;
        padding: 10px 14px;
        font-size: 12px;
    }

    .control-btn {
        min-width: 96px;
        padding: 10px 16px;
    }

    .statistik-panel {
        top: 88px;
        right: 22px;
    }
}

/* Desktop */

@media (min-width: 768px) {
    .content {
        max-width: 920px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content h1 {
        font-size: 54px;
    }

    .map-filter-panel {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 520px;
    }
}

/* Geplante Haltepunkte */

.station-map-card {
    background: var(--blue);
    color: white;
    border-radius: 26px;
    padding: 22px 18px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(13, 43, 69, 0.18);
    overflow: hidden;
}

.station-map-title h2 {
    margin: 6px 0 20px;
    font-size: 24px;
}

.station-map-title .eyebrow {
    color: #ffffff;
}

.station-line {
    position: relative;
    display: grid;
    gap: 18px;
    padding-left: 22px;
}

.station-line::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 12px;
    bottom: 12px;
    width: 4px;
    background: white;
    border-radius: 999px;
}

.station {
    position: relative;
    padding-left: 20px;
}

.station-dot {
    position: absolute;
    left: -22px;
    top: 4px;
    width: 22px;
    height: 22px;
    background: white;
    border: 5px solid var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
}

.station strong {
    display: block;
    font-size: 18px;
    color: white;
}

.station small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,0.78);
    font-weight: 600;
}

.station.active .station-dot {
    background: var(--green);
    border-color: white;
}

/* Desktop: Haltepunkte als Linie */

@media (min-width: 768px) {
    .station-map-card {
        padding: 28px;
    }

    .station-line {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0;
        padding-left: 0;
        padding-top: 34px;
    }

    .station-line::before {
        left: 8%;
        right: 8%;
        top: 40px;
        bottom: auto;
        width: auto;
        height: 5px;
    }

    .station {
        text-align: center;
        padding-left: 0;
        padding-top: 28px;
    }

    .station-dot {
        left: 50%;
        top: -4px;
        transform: translateX(-50%);
    }

    .station strong {
        font-size: 15px;
    }

    .station small {
        font-size: 12px;
    }
}
/* Geschichtsseite */

.history-hero {
    background: var(--blue);
    color: white;
    border-radius: 0 0 34px 34px;
    margin: -16px -16px 24px -16px;
    padding: 34px 20px 30px;
}

.history-hero .eyebrow {
    color: white;
}

.history-hero h1 {
    margin: 8px 0 12px;
    font-size: 34px;
    line-height: 1.08;
}

.history-hero p {
    line-height: 1.6;
    margin-bottom: 0;
}

.history-timeline {
    position: relative;
    margin: 10px 0 18px;
}

.history-timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--green);
    border-radius: 999px;
}

.history-item {
    position: relative;
    padding-left: 58px;
    margin-bottom: 28px;
}

.history-year {
    position: absolute;
    left: 0;
    top: 18px;
    background: var(--green);
    color: white;
    border: 4px solid var(--light);
    width: 50px;
    min-height: 50px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 10px;
    text-align: center;
    line-height: 1.1;
    z-index: 2;
}

.history-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(13, 43, 69, 0.1);
}

.history-card img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    object-position: center;
    background: #f1f4f7;
    display: block;
    padding: 10px;
}

.history-text {
    padding: 18px;
    text-align: left;
}

.history-cost-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 14px;
    box-shadow: 0 8px 18px rgba(13, 43, 69, 0.12);
}

.history-text h2 {
    font-size: 18px;
    line-height: 1.3;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
}

.history-text p {
    line-height: 1.6;
    margin: 0 0 12px;
}

.history-text p:last-child {
    margin-bottom: 0;
}
#image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#image-lightbox[hidden] {
    display: none;
}

.image-lightbox-content {
    max-width: min(1100px, 94%);
    max-height: 92%;
    width: 100%;
    text-align: center;
    background: rgba(8, 13, 20, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    position: relative;
}

.image-lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
}

.viewer-frame {
    width: 100%;
    height: min(72vh, 800px);
    border: none;
    border-radius: 12px;
    background: #fff;
}

.viewer-fallback {
    color: #fff;
    display: grid;
    gap: 10px;
    place-items: center;
    padding: 34px 12px;
}

.viewer-fallback[hidden] {
    display: none;
}

.image-lightbox-title {
    margin: 6px 0 16px;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.image-lightbox-caption {
    color: white;
    margin-top: 12px;
    min-height: 20px;
}

.image-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.image-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(10, 16, 24, 0.65);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
}

.image-lightbox-nav-prev {
    left: 14px;
}

.image-lightbox-nav-next {
    right: 14px;
}

.image-lightbox-nav[hidden] {
    display: none;
}

@media (max-width: 640px) {
    .image-lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .image-lightbox-nav-prev {
        left: 8px;
    }

    .image-lightbox-nav-next {
        right: 8px;
    }
}

@media (min-width: 768px) {
    .history-hero {
        border-radius: 34px;
        margin: 0 0 28px 0;
        padding: 44px;
    }

    .history-hero h1 {
        font-size: 48px;
    }

    .history-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .history-item {
        padding-left: 0;
        width: 50%;
        margin-bottom: 38px;
    }

    .history-item:nth-child(odd) {
        padding-right: 36px;
    }

    .history-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 36px;
    }

    .history-year {
        left: auto;
        right: -29px;
        top: 22px;
        width: 58px;
        min-height: 58px;
        font-size: 11px;
    }

    .history-item:nth-child(even) .history-year {
        left: -29px;
        right: auto;
    }
    
    .history-card img {
        width: 100%;
        height: auto;
        max-height: 260px;
        object-fit: contain;
        object-position: center;
        background: #f1f4f7;
        display: block;
        padding: 10px;
        border-radius: 18px;
    }

    .history-text {
        padding: 24px;
    }
}

.boarding-text{
    text-align:center;
    font-size:1rem;
    font-weight:600;
    margin-bottom:12px;
    color:#2c3e50;
}

@media (min-width: 768px) {
    .history-hero {
        border-radius: 34px;
        margin: 0 0 24px 0;
        padding: 44px;
    }

    .history-hero h1 {
        font-size: 48px;
    }

    .history-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .history-item {
        padding-left: 0;
        width: 50%;
        margin-bottom: 34px;
    }

    .history-item:nth-child(odd) {
        padding-right: 36px;
    }

    .history-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 36px;
    }

    .history-year {
        left: auto;
        right: -28px;
        top: 20px;
        width: 58px;
        min-height: 58px;
        font-size: 12px;
    }

    .history-item:nth-child(even) .history-year {
        left: -30px;
        right: auto;
    }

    .history-card img {
        height: 220px;
    }
}

.station-map-info {
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin-bottom: 26px;
}

.station.connection .station-dot {
    background: white;
    border-color: var(--green);
    width: 28px;
    height: 28px;
    left: -25px;
    top: 0;
}

.station-connection {
    position: absolute;
    left: -52px;
    top: -2px;
    background: white;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.station.connection strong {
    color: #9cffab;
}

@media (min-width: 768px) {

    .station.connection .station-dot {
        left: 50%;
        transform: translateX(-50%);
    }

    .station-connection {
        left: 50%;
        top: -42px;
        transform: translateX(-50%);
    }
}

.bahnlinien-label {
    background: rgba(255,255,255,0.85);
    border: 1px solid #444;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    color: #111;
}

.bahnlinien-legende {
    background: white;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
    font-size: 13px;
    line-height: 1.4;
}

.legende-zeile {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.legende-farbe {
    width: 28px;
    height: 5px;
    display: inline-block;
    border-radius: 4px;
}

.boarding-text{
    text-align:center;
    font-size:1rem;
    font-weight:600;
    margin-bottom:12px;
    color:#2c3e50;
}