.pm-language-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    min-width: 76px;
    min-height: 38px;
    padding: .45rem .8rem;
    border: 1px solid rgba(110, 231, 183, .45);
    border-radius: 10px;
    background: rgba(6, 20, 15, .72);
    color: #6ee7b7;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .14);
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.pm-language-switch:hover,
.pm-language-switch:focus-visible {
    color: #06140f;
    background: #6ee7b7;
    border-color: #6ee7b7;
    transform: translateY(-1px);
}

.pm-language-switch:focus-visible {
    outline: 3px solid rgba(110, 231, 183, .28);
    outline-offset: 2px;
}

.pm-language-switch__icon {
    font-size: 1rem;
    line-height: 1;
}

.pm-language-switch--floating {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 5000;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pm-language-slot {
    display: inline-flex;
    align-items: center;
    margin-inline-start: .55rem;
}

@media (max-width: 720px) {
    .pm-language-switch--floating {
        top: 10px;
        right: 10px;
    }
}

