/* PWA doplněk – nezasahuje do původního vzhledu aplikace. */
html { -webkit-text-size-adjust: 100%; }
@supports (padding: max(0px)) {
  body { padding-bottom: max(env(safe-area-inset-bottom), 0px); }
}
.pwa-install-hint {
  position: fixed;
  z-index: 1055;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 44px 12px 14px;
  border: 1px solid #ced4da;
  border-radius: 12px;
  background: rgba(255,255,255,.97);
  color: #212529;
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.14);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
}
.pwa-install-hint strong { display: block; margin-bottom: 3px; }
.pwa-install-hint button {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #6c757d;
  font-size: 22px;
  line-height: 34px;
}
@media print { .pwa-install-hint { display: none !important; } }
