
/*# sourceMappingURL=custom-rtl.min.css.map */

/* Tajawal Font Override */
:root {
    --vz-body-font-family: 'Tajawal', sans-serif !important;
    --vz-font-sans-serif: 'Tajawal', sans-serif !important;
}

body, html, * {
    font-family: 'Tajawal', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, p, span, a, button, input, select, textarea, label, td, th {
    font-family: 'Tajawal', sans-serif !important;
}
/* End Tajawal Font Override */

/* scroll bar customization */

/* Scrollbar width */
::-webkit-scrollbar {
    width: 5px; /* Adjust the width */
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light gray background */
    border-radius: 10px;
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
    background: #888; /* Dark gray thumb */
    border-radius: 10px;
}

    /* Hover Effect */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1; /* thumb color, track color */
}

/* end scroll bar customization */