/*
 * WanYesea - 侧边滚动条美化（基础结构）
 * 滑块样式由 PHP 内联输出（modules/scrollbar/hooks.php）
 */

::-webkit-scrollbar-button {
	display: none;
}

::-webkit-scrollbar-corner {
	background: transparent;
}

/* 暗色模式覆盖（子比 dark-theme） */
.dark-theme ::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.04) !important;
}

.dark-theme ::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.28) !important;
	outline-color: rgba(30, 30, 30, 0.6) !important;
	border-color: rgba(30, 30, 30, 0.6) !important;
}

.dark-theme ::-webkit-scrollbar-thumb:hover {
	background-color: rgba(255, 255, 255, 0.42) !important;
}
