/* Scroll bar stylings */
::-webkit-scrollbar {
	width: 0.25rem;
	height: 0.25rem;
}

/* Track */
::-webkit-scrollbar-track {
	background: #171717;
	border-radius: 0.125rem;
	margin: 1rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #404040;
	border-radius: 0.125rem;
	transition: all 150ms ease-out;
	opacity: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
	opacity: 1;
}

.gutter-stable {
	scrollbar-gutter: stable both-edges;
}
