/* custom-scrollbar.css */

/* Style for the scrollbar itself */
::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar, you can adjust this as needed */
}

/* Style for the track (part the thumb slides within) */
::-webkit-scrollbar-track {
    background: #F0F0F1; /* Light gray background for the track */
}

/* Style for the thumb (movable part of the scrollbar) */
::-webkit-scrollbar-thumb {
    /* Background is set via the PHP file for gradient effect, defaults set in PHP if needed */
    border-radius: 5px; /* Optional: adds rounded corners to the scrollbar thumb */
}

/* Optional: style for the scrollbar thumb when it's active or being dragged */
::-webkit-scrollbar-thumb:hover {
    background: #151e6d; /* Darken thumb on hover, you can customize the color */
}
