/* Letzte Cleaning Prüfung: 23.09.2026
   Letztes Cleaning: - */
/*
 * Nachfrage nach Benachrichtigungen in der App-Huelle.
 *
 * Die Leiste erscheint nur in der App (siehe app-push.js) und nur einmal. Sie
 * sitzt unten, nicht als Fenster in der Mitte: sie soll fragen, nicht die
 * Arbeit unterbrechen.
 */

.push-leiste {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid #262c3a;
  border-radius: 14px;
  background: #12151d;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
  /* Auf Geraeten mit Home-Balken sonst halb darunter. */
  margin-bottom: env(safe-area-inset-bottom, 0px);
}

.push-leiste-text {
  flex: 1 1 220px;
  margin: 0;
  color: #f2f4f8;
  font-size: 14px;
  line-height: 1.4;
}

.push-leiste-knoepfe {
  display: flex;
  gap: 8px;
}

.push-leiste-knopf {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font: 600 14px/1 "DM Sans", system-ui, sans-serif;
  cursor: pointer;
}

.push-leiste-spaeter {
  background: transparent;
  color: #8b93a5;
}

.push-leiste-ja {
  background: #ff304f;
  color: #fff;
}

.push-leiste-knopf[disabled] {
  opacity: .6;
  cursor: progress;
}
