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

/* 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 */