#language-toggle {
    position: fixed;
    top: 7px;
    right: 18px;
    z-index: 10001;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 76px;
    height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    background: #111;
    color: rgba(255, 255, 255, 0.55);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

#language-toggle:hover,
#language-toggle:focus-visible {
    border-color: var(--accent-color, #c79b42);
    background: #1b1b1b;
    outline: none;
}

#language-toggle .lang-option {
    transition: color 0.2s ease;
}

#language-toggle .lang-option.active {
    color: var(--accent-color, #d2a74f);
}

#language-toggle .lang-separator {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    #language-toggle {
        right: 8px;
        min-width: 68px;
        height: 28px;
        padding: 0 9px;
        font-size: 11px;
    }

    .topbar-content-info {
        padding-right: 58px;
    }
}
