/* ─────────────────────────────────────────────
   Filter Select — Reusable dropdown filter
   Used on: /map, /dayguides, /calendar
   ───────────────────────────────────────────── */

.filter-select .dropdown-toggle {
	display: flex;
	align-items: stretch;
	height: 38px;
	padding: 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	cursor: pointer;
}

.filter-select .dropdown-toggle::after {
	display: none;
}

.filter-select .filter-label {
	display: flex;
	align-items: center;
	padding: 0 12px;
	background-color: rgb(108, 117, 125);
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
}

.filter-select .filter-value {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-grow: 1;
	padding: 0 12px;
	font-weight: 400;
	font-size: 16px;
	color: rgb(224, 132, 51);
	white-space: nowrap;
}

.filter-select .filter-value::after {
	content: "\f078";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	font-size: 0.7rem;
	margin-left: auto;
	padding-left: 1rem;
	padding-right: 0;
	color: rgb(108, 117, 125);
}

.filter-select .dropdown-menu {
	border-radius: 4px;
	padding: 0.25rem 0;
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.filter-select .dropdown-item {
	position: relative;
	padding: 0.5rem 1rem 0.5rem 2.5rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: rgb(108, 117, 125);
}

.filter-select .dropdown-item .text-muted {
	font-weight: 400;
	font-size: 0.85rem !important;
}

.filter-select .dropdown-item.active {
	background-color: transparent;
	color: #EEA31B;
}

.filter-select .dropdown-item.active::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	font-size: 0.75rem;
	color: #EEA31B;
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.filter-select .dropdown-item:hover {
	background-color: #f8f9fa;
}
