/*
 * Bauplan Abschnitt 07 (PWA mit Offline-Support) — Update-Hinweis von
 * pwa.js. Eigene, kleine Datei statt in host/app.css ODER landing.css
 * einzeln zu duplizieren — beide Seiten-Familien (Host-Panel-Optik für
 * die Gast-Seiten, eigene Landing-Page-Optik) binden pwa.js UND pwa.css
 * gemeinsam ein, wo eine Registrierung stattfindet.
 *
 * Fixiert am unteren Bildschirmrand statt einer Modal-Unterbrechung —
 * ein neues Deployment ist keine Fehlermeldung, die den Gast-Ablauf
 * blockieren sollte.
 */
.pwa-update-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  background: #201713;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 100;
}

.pwa-update-banner button {
  background: linear-gradient(90deg, #e23670, #8f1b42);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
