.filtersContainer{
	background: #00727e;
	padding: 20px;
	color:white;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.filterSearch{
	display: flex;
	gap: 8px;
	margin-bottom: 10px;
}

#search{
	flex: 1;
	padding: 10px;
	border: none;
}

.filterReset{
	display: inline-block;
	text-decoration: underline;
}

#clearFilter{
	margin-bottom: 0 !important;
}

#clearFilter:hover {
	font-weight: bold;
	cursor: pointer;
}

.filterDropdowns{
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.dropdownFilter{
	position: relative;
}

.dropdownToggle {
	background: #ffffff;
	border: 1px solid #d0d7de;
	padding: 8px 12px;
	min-width: 200px;
	text-align: left;
	font-weight: 500;
	font-size: 14px;
	position: relative;
	transition: all 0.2s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.helperArrow::after{
	font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: '\f0d7';
	color: #1b2734;
	transition: transform 0.2s ease;
}

.dropdownToggle.open .helperArrow{
	transform: rotate(180deg);
}

.dropdownToggle:hover{
	background: #f4fafa;
	border-color: #0a7c80;
}

.dropdownMenu {
	position: absolute;
	background: white;
	border: 1px solid #d0d7de;
	padding: 10px 12px;
	width: 200px;
	box-shadow: 0 6px 16px rgba(0,0,0,0.15);
	z-index: 10;
}

.dropdownMenu label {
	color: black;
	margin-bottom: 0 !important;
	display: block;
	padding-left: 20px;
accent-color: #0a7c80;
}


.hidden{
	display: none;
}








