/* Sitewide scrollbar color — matches the site's pink accent (#ff4d72). */

html {
	scrollbar-color: #ff4d72 #fce8ef; /* Firefox: thumb track */
	scrollbar-width: thin;
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: #fce8ef;
}

::-webkit-scrollbar-thumb {
	background: #ff4d72;
	border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
	background: #e0395f;
}
