.board-sidebar {
	width: 220px;
	background-color: #fff;
	border-radius: 10px;
	padding: 25px 18px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	font-family: 'Pretendard', sans-serif;
}

/* 섹션 제목 */
.sidebar-section-title {
	font-weight: 600;
	color: #222;
	font-size: 14px; /* 살짝 키움 */
	margin: 20px 0 12px 0;
	padding-bottom: 5px;
	border-bottom: 1px solid #eee; /* 구분선 */
}

/* 메뉴 목록 */
.sidebar-nav ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.sidebar-nav li {
	margin-bottom: 10px;
}

.sidebar-nav a {
	text-decoration: none;
	color: #333;
	font-size: 15px; /* 크기 키움 */
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px; /* 클릭 영역 넓힘 */
	border-radius: 6px;
	transition: all 0.2s ease;
}

/* 활성 메뉴 */
.sidebar-nav li.active a {
	color: #377dff;
	font-weight: 600;
	background-color: rgba(55, 125, 255, 0.08);
}

/* 호버 시 강조 */
.sidebar-nav a:hover {
	color: #377dff;
	background-color: rgba(55, 125, 255, 0.05);
}

/* 섹션 사이 간격 */
.sidebar-nav + .sidebar-section-title {
	margin-top: 25px;
}
