.sg-language-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.sg-language-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 32px;
    padding: 0 11px;

    border: 1px solid #bcbcbc;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;
    transition: background-color 0.15s ease,
                border-color 0.15s ease,
                transform 0.15s ease;
}

.sg-language-link {
    background: transparent;
    color: inherit;
}

.sg-language-link:hover {
    background: #eeeeee;
    border-color: #888;
    color: #111;
    text-decoration: none;
    transform: translateY(-1px);
}

.sg-language-current {
    background: #dedede;
    border-color: #dedede;
    color: #777;
    cursor: default;
}