.language-picker {
    z-index: 9999;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.language-picker .lang-btn {
    color: #1f242c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.language-picker .lang-btn:hover {
    color: #007bff;
}
.language-picker span {
    color: #888;
}
.language-picker .lang-btn-lt {
    text-decoration: underline;
}