/* css/recherche.css */

/* Styles pour les options dans la popup Elementor */
.ekit_modal-searchPanel .townly-search-options {
    margin-top: 20px;
    font-size: 0.9em;
    text-align: left;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}

/* Texte des labels en blanc dans la popup */
.ekit_modal-searchPanel .townly-search-options label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.3;
    /* Force la couleur du texte en blanc */
    color: #ffffff !important;
}

/* Optionnel: Style pour le texte à l'intérieur de l'input checkbox si nécessaire */
.ekit_modal-searchPanel .townly-search-options input[type="checkbox"] {
    margin-right: 8px;
}

/* Style pour le texte surligné */
.townly-highlight {
    /* Jaune clair, semi-transparent pour voir le texte */
    background-color: rgba(255, 246, 169, 0.8);
    font-weight: bold;
    /* Ajoute un peu de padding pour mieux voir le surlignage */
    padding: 0 2px;
    border-radius: 2px; /* Bordures arrondies optionnelles */
}

/* Ajustements responsive */
@media (max-width: 768px) {
	.ekit_modal-searchPanel .townly-search-options {
		padding: 0 10px;
		margin-top: 15px;
	}
	.ekit_modal-searchPanel .townly-search-options label {
		margin-bottom: 8px;
        font-size: 0.85em;
	}
}

/* Si vous utilisez aussi le formulaire dans d'autres contextes (footer curtain, page de recherche dédiée, etc.) */
/* Vous pouvez décommenter et adapter ces règles */
/*
#curtain.open .townly-search-options,
.page-template-search .townly-search-options {
    margin-top: 20px;
    font-size: 0.9em;
    text-align: left;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#curtain.open .townly-search-options label,
.page-template-search .townly-search-options label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.3;
}

@media (max-width: 768px) {
	#curtain.open .townly-search-container,
	#curtain.open .townly-search-options,
    .page-template-search .townly-search-container,
    .page-template-search .townly-search-options {
		max-width: 90%;
		padding: 0 5%;
	}
	#curtain.open .townly-search-options,
    .page-template-search .townly-search-options {
		margin-top: 15px;
	}
	#curtain.open .townly-search-options label,
    .page-template-search .townly-search-options label {
		margin-bottom: 8px;
	}
}
*/