/* ─────────────────────────────────────────────
   Filters — Filter Select dropdown + Region button group
   Used on: /activities, /participants, /dayguides, /calendar, /map, /search, /account
   ───────────────────────────────────────────── */

/* ── Filter Select (dropdown) ─────────────────────────────── */

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

/* ── Filter Region (button group) ────────────────────────── */

.filter-region .btn {
	font-size: 16px;
	padding: 0.375rem 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
}

.filter-region .btn-sf {
	background-color: #EEA31B !important;
	border-color: #EEA31B !important;
	color: #fff !important;
}

.filter-region .btn-nb {
	background-color: #a3a983 !important;
	border-color: #a3a983 !important;
	color: #fff !important;
}

.filter-region .btn-eb {
	background-color: #af95a6 !important;
	border-color: #af95a6 !important;
	color: #fff !important;
}

.filter-region .btn-sv {
	background-color: #e08433 !important;
	border-color: #e08433 !important;
	color: #fff !important;
}

.filter-region .btn-co {
	background-color: #91b6bb !important;
	border-color: #91b6bb !important;
	color: #fff !important;
}

.filter-region .btn-all {
	background-color: rgb(108, 117, 125) !important;
	border-color: rgb(108, 117, 125) !important;
	color: #fff !important;
}

.filter-region .btn.active {
	text-decoration: underline !important;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.filter-region .btn-all.active {
	text-decoration: none !important;
}

.filter-region .btn:focus,
.filter-region .btn.active:focus {
	box-shadow: none !important;
}

.filter-region .btn:hover {
	opacity: 0.85;
}
