/* إخفاء النص الموجود داخل زر اللغة */
button.lang[aria-label="language"] .language-btn > span {
    display: none !important;
}

/* تنسيق زر اللغة الأصلي */
button.lang[aria-label="language"] {
    flex-basis: auto !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 32px !important;
    padding: 0 !important;
}

button.lang[aria-label="language"] .language-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

/* علم المملكة في النسخة العربية */
html[dir="rtl"] button.lang[aria-label="language"] .language-btn::before,
html:lang(ar) button.lang[aria-label="language"] .language-btn::before {
    content: "🇸🇦" !important;
    font-size: 27px !important;
    line-height: 1 !important;
}

/* علم بريطانيا في النسخة الإنجليزية */
html[dir="ltr"] button.lang[aria-label="language"] .language-btn::before,
html:lang(en) button.lang[aria-label="language"] .language-btn::before {
    content: "EN" !important;
    font-size: 27px !important;
    line-height: 1 !important;
}