*{
    scroll-behavior: smooth;
}

.rtl{
    direction: rtl !important;
}
.ltr{
    direction: ltr;
}

/* Custom Scrollbar Styles */
.custom-scroll::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #d1d5db; /* Color of the scrollbar thumb */
    border-radius: 4px; /* Rounded corners for the thumb */
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af; /* Darker color on hover */
}

.custom-scroll::-webkit-scrollbar-track {
    background-color: #f3f4f6; /* Background color of the scrollbar track */
    border-radius: 4px; /* Rounded corners for the track */
}

/* For Firefox and other modern browsers */
.custom-scroll {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #d1d5db #f3f4f6; /* Thumb color and track color */
}