.cpf-filters {
	font-size: 14px;
}
.cpf-group {
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 1px;
}
.cpf-group-title {
	width: 100%;
	text-align: left;
	background: #4a4a4a;
	color: #fff;
	border: none;
	padding: 10px 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cpf-group-title::after {
	content: "\25BE";
	transition: transform 0.2s ease;
}
.cpf-group.is-collapsed .cpf-group-title::after {
	transform: rotate(-90deg);
}
.cpf-group-body {
	padding: 10px 14px;
	background: #fafafa;
}
.cpf-group.is-collapsed .cpf-group-body {
	display: none;
}
.cpf-search {
	width: 100%;
	box-sizing: border-box;
	padding: 6px 8px;
	margin-bottom: 8px;
	border: 1px solid #ccc;
}
.cpf-term-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 220px;
	overflow-y: auto;
}
.cpf-term-list li {
	padding: 3px 0;
}
.cpf-term-list li.is-hidden {
	display: none;
}
.cpf-cascade {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.cpf-cascade-select {
	width: 100%;
	box-sizing: border-box;
	padding: 6px 8px;
	border: 1px solid #ccc;
}
.cpf-pagination {
	margin-top: 16px;
	text-align: center;
}
.cpf-pagination a,
.cpf-pagination span {
	display: inline-block;
	padding: 4px 9px;
	margin: 0 2px;
}
