.searchandfilter li > ul {
	display: none;
}

.searchandfilter li.toggled > ul {
	display: block ;

}

.searchandfilter > ul {
	list-style-type: none; /* Optional: removes bullet points */
	padding: 0; /* Optional: removes padding */
	margin: 0; /* Optional: removes margin */
}
.searchandfilter > ul > li {
	border-bottom: 1px solid black; /* Add a bottom border to all but the last item */
}
.searchandfilter > ul > li:first-child {
	border-top: 1px solid black; /* Add a top border to the first item */
}
.searchandfilter > ul > li:last-child {
	border-bottom: 1px solid black; /* Ensures the last item has a bottom border */
}