/* Explain: Base reset and typography defaults, including custom scrollbar. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    direction: rtl;
}

[x-cloak] {
    display: none !important;
}

/* Custom scrollbar for an elegant feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--background-color);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}