/* Auth PWA install button + iOS instructions modal */

.pwa-install-auth-btn {
  margin: 10px auto 0;
  display: block;
  width: 100%;
  max-width: 420px;
  border: 1px dashed rgba(15, 152, 160, 0.5);
  background: rgba(15, 152, 160, 0.08);
  color: rgba(15, 152, 160, 1);
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.pwa-install-auth-btn:active {
  transform: translateY(1px);
}

.pwa-install-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10060;
}

.pwa-install-modal.show {
  display: flex;
}

.pwa-install-modal__sheet {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 16px 12px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
  position: relative;
}

.pwa-install-modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  font-size: 18px;
  line-height: 34px;
}

.pwa-install-modal__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pwa-install-modal__body {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.72);
}

.pwa-install-modal__body ol {
  margin: 8px 0 0 18px;
}

