.scrollbar::-webkit-scrollbar {
	width: 14px;
	height: 14px;
}
.scrollbar::-webkit-scrollbar-thumb {
	background: #0f0f0f1a; /* TODO: replace with CSS var once we have this token in the DS */
	border-radius: var(--component-radii-md);
	border: 4px solid transparent; /* Creates padding for the track */
	background-clip: padding-box;
}
.scrollbar::-webkit-scrollbar-corner {
	background: transparent;
}
body[data-theme='dark'] .scrollbar::-webkit-scrollbar-thumb {
	background: #ffffff14; /* TODO: replace with CSS var once we have this token in the DS */
	background-clip: padding-box;
}
