/* ============================================================
   Lisafunktsioonid – Keelevalik (EST / ENG)
   ============================================================ */

.lf-languages {
    display: inline-flex;
    align-items: center;
    height: 26px;
    white-space: nowrap;
    margin-left: 0.5rem;
    box-sizing: border-box;
}

.lf-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0 0.45rem;
    border-radius: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
    line-height: 1;
    background: #124267;
    color: white;
    box-sizing: border-box;
}

.lf-lang-btn:hover {
    opacity: 0.85;
    color: white;
    text-decoration: none;
}

.lf-lang-btn--first {
    border-radius: 0.3rem 0 0 0.3rem;
}

.lf-lang-btn--last {
    border-radius: 0 0.3rem 0.3rem 0;
}

.lf-lang-btn--first.lf-lang-btn--last {
    border-radius: 0.3rem;
}

.lf-lang-btn--active {
    background: white;
    color: #124267;
    cursor: default;
    pointer-events: none;
    font-weight: 900;
}

.lf-lang-btn--active:hover {
    opacity: 1;
}

.lf-lang-btn--disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

li.lf-languages-menu-item {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
}
