/* Shared Language Toggle - fixed top-right on every Solscribe page */
.lang-toggle {
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border: 1px solid #F29F05;
    border-radius: 999px;
    color: #F29F05 !important;
    background: rgba(24, 37, 75, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    letter-spacing: 0.2px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lang-toggle:hover {
    background: #F29F05;
    color: #18254B !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}
.lang-toggle svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .lang-toggle {
        top: 8px;
        right: 10px;
        padding: 6px 10px;
        font-size: 12px;
    }
    .lang-toggle svg {
        width: 13px;
        height: 13px;
    }
}
