@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/Inter_18pt-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./fonts/Inter_18pt-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./fonts/Sora-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Material Icons Outlined';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('./fonts/MaterialIconsOutlined-Regular.woff2') format('woff2');
}

.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

:root {
    font-size: 19px;
    --gray2: rgb(248, 249, 250);
    --hauptfarbe: rgb(0, 120, 174);
    --grau3: rgb(242, 242, 242);
    --grau4: rgb(231, 231, 231);
    --grau5: rgb(127 127 127);
    --weiss: #FFFFFF;
    --border-color: transparent;
}

body {
    background: linear-gradient(135deg, rgb(248 249 250 / 0%) 0%, #f5f6f7 60%, #e9ecef 100%);
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding-top: 30px;
    min-height: 100vh;
    box-sizing: border-box;
    font-size: 0.8rem;
}

body, html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.weisseKarte {
    min-width: 300px;
    max-width: 700px;
    width: 100%;
    /* background-color: var(--weiss); */
    border-radius: 8px;
    border: none;
    padding: 15px;
    /* margin: 5px 0; */
    box-sizing: border-box;
}

h1 {
    font-family: 'Sora', sans-serif;
    color: var(--hauptfarbe);
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    text-align: center;
    cursor: pointer;
}

#eingabeBereich {
    display: flex;
    align-items: center;
    background-color: var(--grau4);
    border-radius: 5px;
    padding: 5px;
}

#inputFeldSuchanfrage {
    flex: 1;
    width: 100%;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    resize: none;
    outline: none;
}

.hidden { display: none !important; }

.hauptAktionBtn {
    background: var(--hauptfarbe);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 7px 18px;
    cursor: pointer;
    font-size: 0.8rem;
}

/* Einheitliches Styling für alle Schließen-Buttons */
.schliessenBtn {
    background: var(--grau3) !important;
    color: #444 !important;
    font-weight: normal !important;
    margin-top: 10px;
}

.gesetzHighlight {
    font-weight: 700;
    color: var(--hauptfarbe);
}

.fusszeile-link {
    cursor: pointer;
    color: #888;
    text-decoration: none;
    margin: 0 5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0; /* vertikales Spacing oben/unten */
}

.fusszeile-link.hervorgehoben {
    color: #888;
    font-weight: bold;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    text-decoration: none;
    text-decoration-color: unset;
}

.fusszeile-icon {
    font-size: 16px !important;
    vertical-align: middle;
}

#kontaktFormular input, #kontaktFormular textarea {
    width: 100%;
    margin-bottom: 10px;
    border: none;
    padding: 8px;
    border-radius: 4px;
}

#iconSuchleiste {
    color: var(--grau5);
    font-size: 1.3rem;
    margin-right: 10px;
    user-select: none;
}

#headlineFragezeichen {
    font-size: 1.3rem;
    opacity: 1;
    display: inline-block;
}

#kontaktFormular label { color: #444; font-family: 'Inter', sans-serif; }
#kontaktFormular input, #kontaktFormular textarea { font-size: 0.8rem; box-sizing: border-box; font-family: 'Inter', sans-serif; border: none; background-color: var(--grau3); }

#fusszeile {
    margin-top: 10px;
}

#urlStreifenWrapper > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
    align-items: flex-start;
}

/* url-streifen-statusanzeige nebeneinander, Breite nach Inhalt */
.url-streifen-statusanzeige {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 4px 13px;
    color: rgb(0 0 0);
    text-decoration: none;
    font-size: 0.7rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.15s, opacity 0.5s ease-out, transform 0.5s ease-out;
    max-width: 100%;
    opacity: 0;
    transform: translateY(5px);
}

.url-streifen-sichtbar {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.75rem;
}

/* Abstand zwischen den Streifen */
.url-streifen-statusanzeige:not(:last-child) {
    margin-right: 7px;
}

/* Hover bleibt */
.url-streifen-statusanzeige:hover {
    background-color: var(--grau3);
}
