/* LangRank language switcher */
.lr-switcher.lr-dropdown {
    padding: 6px 28px 6px 10px;
    border: 1px solid #d6dbe7;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='%234a5374' d='M6 9L1 4h10z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
}
.lr-switcher.lr-list {
    list-style: none; padding: 0; margin: 0; display: flex; gap: 12px; flex-wrap: wrap;
}
.lr-switcher.lr-list li.active a { font-weight: 700; color: #2d4eff; }
.lr-switcher.lr-list a { text-decoration: none; color: inherit; }

.lr-floating {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 99998;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(20,30,60,.15);
    padding: 6px;
}
.lr-branding {
    position: fixed;
    bottom: 4px;
    left: 8px;
    z-index: 99997;
    font-size: 11px;
    color: #6b7596;
    background: rgba(255,255,255,.85);
    padding: 2px 6px;
    border-radius: 4px;
}
.lr-branding a { color: #2d4eff; text-decoration: none; }

@media (max-width: 600px) {
    .lr-floating { bottom: 8px; right: 8px; }
}
