/* WebKit browsers like Chrome, Safari, Edge */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #333;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: #ffce00;
	border-radius: 10px;
	border: 2px solid #333;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #e6b800;
}


/* Firefox browser support */
{
	scrollbar-width: thin; /* 'auto', 'thin', or 'none' */
	scrollbar-color: #ffce00 #333; /* thumb and track color */
}