/* scrollbar */
::-webkit-scrollbar {
	width: 16px;
	height: 16px;
	background-color: #0000FF; /* blue */
}

/* thumb for scrollbar */
::-webkit-scrollbar-thumb {
	background-color: #00FF00; /* green */
	border-radius: 9em;
	box-shadow: inset 1px 1px 10px yellow; /* yellow */
}

::-webkit-scrollbar-thumb:hover {
	background-color: orange; /* orange */
}