.mlang-switcher {
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 95, 58, 0.25);
    background: transparent;
    padding: 3px;
    gap: 2px;
}

.mlang-option {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(0, 95, 58, 0.5);
    transition: color 0.2s ease, background 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}

.mlang-option:hover {
    color: #005F3A;
}

.mlang-option.is-active {
    background: #005F3A;
    color: #fff;
    pointer-events: none;
    cursor: default;
}

.mlang-switcher--mobile {
    position: absolute;
    top: 20px;
    right: 56px;
    padding: 0;
    border-top: none;
    margin: 0;
    z-index: 10;
}
