/* Hide parent <li> if anchor with data-value has no href */
.hide-widget:has(a[data-value]:not([href])),
.hide-widget:has(a[data-value][href=""]),
.hide-widget:has(a[data-value][href="#"]) {
  display: none !important;
}

/* Hide if text container is empty */
.hide-widget:has([data-value]:not(a):not(img):empty) {
  display: none !important;
}

/* Hide if image has no src */
.hide-widget:has(img[data-value]:not([src])),
.hide-widget:has(img[data-value][src=""]) {
  display: none !important;
}