removeElementBackdropFilter function
Clears all backdrop-filter styles from the element.
Implementation
void removeElementBackdropFilter(Element element) {
element.style?.backdropFilter = '';
element.style?.removeProperty('backdrop-filter');
element.style?.removeProperty("-webkit-backdrop-filter");
}