/* ==========================================================
   HGP Remove Top Blue Ghost Mask Bar
   Safe visual-only patch.
   Keeps real header, sidebars, dashboard, and chat bubble intact.
   ========================================================== */

/* Remove the old mask bar that was covering the ghost chat strip */
.hgp-top-ghost-mask,
[data-hgp-top-mask="true"],
[data-hgp-remove-top-bar="true"]{
  display:none !important;
  visibility:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
  width:0 !important;
  height:0 !important;
  min-height:0 !important;
  max-height:0 !important;
  overflow:hidden !important;
}

/* Prevent any previous fixed top cleaner from creating a horizontal band */
body > div[style*="position: fixed"][style*="top"][style*="height"],
body > section[style*="position: fixed"][style*="top"][style*="height"]{
  pointer-events:none;
}

/* Preserve the true HGP header */
.top,
header,
.hgp-app-top,
.hgp-topbar,
.hgp-shell-header{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}

/* Keep layout clean */
.main-wrap,
.main,
.shell{
  box-shadow:none;
}

/* Keep floating chat bubble above UI */
.hgp-chat-bubble-root{
  z-index:999999 !important;
}