        body {
            top: 0 !important;
        }

        /* Block Google Translate popups, loading banners, tooltips, and frames completely */
        .goog-te-banner-frame.skiptranslate,
        .goog-te-balloon-frame,
        #goog-gt-tt,
        .goog-te-spinner-pos,
        .goog-te-spinner-animation,
        .VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
        .VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc,
        .VIpgJd-ZVi9od-ORHb-OEVmcd,
        #google_translate_element2,
        .goog-tooltip,
        .goog-tooltip:hover {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }

        .goog-text-highlight {
            background: transparent !important;
            box-shadow: none !important;
            border: none !important;
        }

        .lang-btn {
            transition: color 0.3s ease;
        }

        .lang-btn:hover {
            color: black !important;
        }

        .lang-switcher-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #ffffff;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            padding: 10px 18px;
            gap: 12px;
            z-index: 9999;
            font-family: 'Plus Jakarta Sans', sans-serif;
            border: 1px solid #eaeaea;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .lang-options {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .lang-switcher-float.is-loading .lang-options {
            opacity: 0;
            transform: scale(0.95);
            pointer-events: none;
        }

        .lang-loader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            visibility: hidden;
            display: flex;
            align-items: center;
            gap: 8px;
            color: black;
            font-size: 14px;
            font-weight: 600;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        .lang-switcher-float.is-loading .lang-loader {
            opacity: 1;
            visibility: visible;
        }

        .lang-spinner {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(56, 152, 236, 0.2);
            border-top-color: black;
            border-radius: 50%;
            animation: lang-spin 0.8s linear infinite;
        }

        @keyframes lang-spin {
            to {
                transform: rotate(360deg);
            }
        }

        .lang-switcher-float a {
            text-decoration: none;
            color: #1a237e;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .lang-switcher-float a:hover {
            color: black;
            transform: translateY(-2px);
        }

        .lang-switcher-float .divider {
            width: 1px;
            height: 16px;
            background-color: #e0e0e0;
        }

        .lang-switcher-float img {
            width: 20px;
            height: 14px;
            object-fit: cover;
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }


        @media (max-width: 768px) {
            .lang-switcher-float {
                bottom: 100px;
            }
        }