/* Offline & PWA Notification Banners */
#pwaInstallBanner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0e1726;
  border: 1px solid #00e5ff;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 99999;
  max-width: 400px;
  animation: slideInUp 0.3s ease;
}

#offlineStatusBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffab00;
  color: #070d18;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  padding: 6px 12px;
  z-index: 999999;
  letter-spacing: 0.05em;
  display: none;
}

#offlineStatusBar.offline-active {
  display: block;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
