/* Taalkeuze-knoppen (NL / EN). Compact, met grote touch-targets op mobiel. */
.fs-lang-switch {
    display: inline-flex;
    gap: 0.25rem;
    align-items: center;
}

.fs-lang-switch__btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.fs-lang-switch__btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.fs-lang-switch__btn--active {
    background: #fff;
    color: #1f2a44;
    border-color: #fff;
}

/* Variant voor lichte achtergronden (bv. boven het formulier). */
.fs-lang-switch--dark .fs-lang-switch__btn {
    border-color: rgba(31, 42, 68, 0.4);
    color: #1f2a44;
}

.fs-lang-switch--dark .fs-lang-switch__btn:hover {
    background: rgba(31, 42, 68, 0.08);
}

.fs-lang-switch--dark .fs-lang-switch__btn--active {
    background: #1f2a44;
    color: #fff;
    border-color: #1f2a44;
}
