body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.sidebarLeft {
	width: 100%;
	height: 100%;
	background-color: white;
	color: black;
	padding: 20px;
	border: 1px solid black;
	border-radius: 10px;
}

.categories {
	width: 100%;
	list-style: none;
	padding: 0;
}

.category {
	position: relative;
	width: 100%;
	padding: 20px 0;
	padding-right: 0;
	transition: box-shadow 0.3s;
}

.category:hover, .subcategories li:hover {
	color: #EE6C4D;
}

.name-category {
	padding-left: 8px;
	font-weight: 600;
}

.toggle {
	cursor: pointer;
	position: absolute;
	right: 5px;
	font-weight: bold; 
	font-size: 20px;
	transform: rotate(90deg);
	transition: all 0.3s ease;	
}

.toggleTransform {
	transform: rotate(0deg);
}

.subcategories {
	list-style: none;
	/* padding-left: 10px; */
	margin-top: 10px;
	overflow: hidden;
	height: 0;
	transition: height 0.3s ease;
}

.subcategories.show {
	height: 200px;
}

.subcategories li {
	padding: 15px 0;
}

.display-none {
	display: none;
}

.category a {
	border: none;
	padding: 0;
}

