/* lang-toggle.css — TaxTami EN / SN language toggle */

.lang-toggle-li {
    margin-left: 15px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 3px 8px;
    vertical-align: middle;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 14px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.lang-btn.active {
    background: #2c724f;
    color: #ffffff;
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.lang-sep {
    color: rgba(255, 255, 255, 0.30);
    font-size: 11px;
    pointer-events: none;
    user-select: none;
    padding: 0 1px;
}

/* ── Suppress Google Translate's default top banner ───────────────────────── */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip-text,
body > .skiptranslate {
    display: none !important;
}

/* Prevent Google Translate from pushing page content down */
body {
    top: 0 !important;
}
