// Rename condition dropdown options
var searchForm = document.getElementById('searchContainer');
if (searchForm) {
var optionMap = {
'any of selected': 'Matches Any',
'all of selected': 'Matches All',
'none of selected': 'Excludes All',
'is': 'Is',
'is not': 'Is Not'
};
searchForm.querySelectorAll('select option').forEach(function(opt) {
var mapped = optionMap[opt.text.trim()];
if (mapped) opt.text = mapped;
});
}