/* Ocultar panel de Service Worker */
#pwa-notification,
#sw-notification,
#service-worker-notification,
div[id*="sw-"],
div[id*="service-worker"],
div[aria-label*="service worker"],
div[aria-label*="Service Worker"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: -9999 !important;
}

/* También ocultar por clases comunes */
.pwa-toast,
.sw-toast,
.pwa-notification,
.sw-notification,
.service-worker-notification,
.pwa-update-notification,
div[class*="sw-"],
div[class*="service-worker"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}
