/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0) !important; /* Fully transparent */
     /*background: #f1f1f1; Background of the track background: rgba(255, 255, 255, 0.0); */
}

::-webkit-scrollbar-thumb {
    background: #006930; /* Color of the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #FD8902;/* Color of the scrollbar thumb on hover */
}
