/**
 * Hide Cookiebot's injected banner/widget — Wenty renders its own React consent bar.
 * Cookiebot uc.js still handles auto-blocking and consent storage.
 *
 * Scoped to a class that cookiebot-hide-native.js sets immediately and REMOVES again if
 * the app never boots. Hiding this unconditionally is what turned a blocked bundle into a
 * dead end: no React banner, no native banner, so no way to consent and no way to recover.
 */
html.wenty-hide-cb-native #CybotCookiebotDialog,
html.wenty-hide-cb-native #CybotCookiebotDialogBodyUnderlay,
html.wenty-hide-cb-native #CookiebotWidget {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}
