/* STYLING CSS TOMBOL / SWITCH DENGAN EFEK TENGGELAM */
/* Wadah utama berbentuk kapsul / switch horizontal */
.custom-lang-switcher {
    position: static; /* Ubah ke static jika ditaruh di dalam navbar menu */
    top: 20px;
    right: 20px;
    z-index: 999999;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    background: #ffffff;
    padding: 4px;
    border-radius: 30px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.12);
    display: inline-flex;
    align-items: center;
}

/* Gaya dasar tombol saat TIDAK DIPILIH (Teks Hitam, BG Putih) */
.lang-link {
    color: #333333;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    background: #ffffff;
    display: inline-block;
}

/* Gaya tombol saat DIPILIH / AKTIF (Teks Putih, BG Krem, Efek Tenggelam) */
.lang-link.active {
    color: #ffffff !important;
    background-color: #111827;
    /*  background-color: #D2B48C !important; /* Warna Krem (Tan / Soft Cream) */

    /* Efek bayangan ke dalam (inset) membuat tombol berkesan ditekan/tenggelam */
    box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.25),
                inset 0px -1px 2px rgba(255, 255, 255, 0.2);

    /* Sedikit diturunkan posisinya untuk menambah ilusi mekanis tombol amblas */
    transform: translateY(1px);
}

/* Efek hover halus hanya untuk tombol yang belum aktif */
.lang-link:not(.active):hover {
    color: #000000;
    background-color: #f5f5f5;
}

/* MENYEMBUNYIKAN INTERFACE GOOGLE TRANSLATE */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
iframe.skiptranslate,
#goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
}
body {
    top: 0px !important;
    position: static !important;
}
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}