.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;
}

#c117240 .fa-search{
	padding: 10px;
	background: #00727e;
	border: none;
	color: white;
}

#c117240 .fa-search:hover{
	background: #005f68;
}

.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;
}

#everythingContainer{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;

}

.toFilter{
	border: 1px solid #005f68;
	padding: 20px;
	width: 330px;
	background: #005f68;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toFilter:hover{
	transform: scale(1.05);
	background: #0E4C53;
	boxshadow: 0 10px 25px rgba(0,0,0,0.2);
}

.toFilter a{
	text-decoration: none !important;
	display: flex;
	flex-direction: column;
	height: 100%;
}


.courseName{
	margin-top: auto;
	font-family: Funnel Display, sans-serif;
	color: white !important;
	font-weight: bold;
	font-size: 1.2rem;
}
	
.informationTop{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}


.information, .language{
	letter-spacing: 1px;
	border-radius: 5px;
	display: inline-block;
	color: #00ffff !important;
	font-family: Host Grotesk, sans-serif;
	padding: 4px;
}