/* DRONEHQ_NOTIFICATIONS_BELL_ZERO_BADGE_GUARD_V98_START */
/*
  Visual guard only:
  - A zero unread count should not render as a red badge.
  - The bell icon remains the visible control.
*/
[data-dhq-notification-zero-badge-v64],
.dhq-notification-zero-badge-v64,
[data-notification-count]:empty,
[data-notification-count][hidden],
[data-notification-count][data-dhq-empty-count="true"],
[data-notification-count][data-dhq-unread-count="0"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Show the real unread badge only when JS marks it as active. */
[data-notification-count][data-dhq-unread-active="true"] {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* DRONEHQ_NOTIFICATIONS_BELL_ZERO_BADGE_GUARD_V98_END */
