.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 8px;
    flex-shrink: 0;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 32px;
    padding: 0 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.language-switcher a:hover,
.language-switcher a.active {
    border-color: #ff4d4d;
    background: rgba(255, 77, 77, 0.16);
}

@media (max-width: 480px) {
    .language-switcher {
        margin-right: 2px;
        gap: 2px;
    }

    .language-switcher a {
        min-width: 32px;
        height: 30px;
        padding: 0 5px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .right-controls .language-switcher {
        display: none !important;
    }
}

