/**
 * 左侧大分类导航栏样式（templates/part-app-sidebar.php）
 * 右侧分隔线：头尾渐淡，中间保持清晰细线
 */
.app-sidebar {
	position: relative;
}

.app-sidebar::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgb(243 244 246 / 0.2) 8%,
		rgb(243 244 246) 20%,
		rgb(243 244 246) 80%,
		rgb(243 244 246 / 0.2) 92%,
		transparent 100%
	);
	pointer-events: none;
}
