/* Explain: Base reset and typography defaults with bilingual language support. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
}

body {
    overflow-x: hidden;
}

html[lang="en"] .ar { display: none !important; }
html[lang="ar"] .en { display: none !important; }

html[lang="en"] {
    text-align: left;
}

html[lang="ar"] {
    text-align: right;
}
