/**
 * Docs Category Sidebar Styles
 *
 * Styles for the documentation category sidebar navigation.
 */

.docs-category-sidebar {
	margin: 0;
	padding: 0;
}

.docs-category-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.docs-category-sidebar__item {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #F1F1F6;
}

.docs-category-sidebar__item:last-child {
	border-bottom: none;
}

.docs-category-sidebar__link {
	display: block;
	padding: 12px 0;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	color: #171717;
	text-decoration: none;
	transition: color 0.2s ease;
}

.docs-category-sidebar__link:hover {
	color: #05A82E;
}

.docs-category-sidebar__item--active .docs-category-sidebar__link {
	color: #05A82E;
}
