.ohf-filtre-offres {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
	justify-content: center;
}

.ohf-filtre-offres select {
	padding: 8px 12px;
}

.ohf-filtre-offres select:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
#ohf-select-region, #ohf-select-departement{
	border: 1px solid #dadada;
    border-radius: 50px;
    font-size: 18px;
    padding: 10px 25px;
	width: 340px;
}
#offres-loop-wrapper {
	position: relative;
	min-height: 120px;
	transition: opacity 0.15s ease;
}

#offres-loop-wrapper.ohf-is-loading {
	opacity: 0.4;
	pointer-events: none;
}

#offres-loop-wrapper.ohf-is-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	margin: -16px 0 0 -16px;
	border: 3px solid rgba(0, 0, 0, 0.15);
	border-top-color: #f97316;
	border-radius: 50%;
	animation: ohf-spin 0.7s linear infinite;
}

@keyframes ohf-spin {
	to { transform: rotate(360deg); }
}