/* pwa-install-modal.css — post-share install nudge */

.pwa-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pwa-sheet {
  background: var(--brand-surface, #1c1c1e);
  color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 32px 28px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  text-align: center;
}

.pwa-sheet-btn-row {
  position: relative;
  margin-bottom: 12px;
}

.pwa-sheet-btn {
  width: 100%;
  background: var(--brand-accent, #ffe600);
  color: #000;
  border: none;
  border-radius: 14px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}

.pwa-sheet-maybe {
  background: none;
  border: 1.5px solid var(--brand-accent, #FFF310);
  color: var(--brand-accent, #FFF310);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 20px;
  width: 100%;
  border-radius: 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pwa-sheet-maybe svg {
  flex-shrink: 0;
}
