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

/* Tajawal font override */
:root, [data-theme] {
    --tb-font-sans-serif: "Tajawal", sans-serif !important;
    --tb-font-monospace: "Tajawal", sans-serif !important;
}
body { font-family: "Tajawal", sans-serif !important; }

/* Compact sidebar — add vertical spacing between menu items */
[data-sidebar-size="sm"] .navbar-nav .nav-item > a.menu-link {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

[data-sidebar-size="sm"] .navbar-nav .menu-title {
    margin-top: 0.5rem;
}