.push-prompt {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-in-out;
}

.push-prompt.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.push-prompt__dialog {
  background: #fffcf9;
  border: 1px solid rgba(235, 194, 194, 0.55);
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(30, 46, 50, 0.35);
  max-width: 420px;
  width: 90%;
  padding: 22px 24px;
  color: #1e2e32;
  text-align: center;
}

.push-prompt__title {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 700;
}

.push-prompt__description {
  margin: 0 0 16px;
  font-size: 1rem;
  color: #2f474d;
}

.push-prompt__actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.push-prompt__button {
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 120ms ease, opacity 120ms ease;
}

.push-prompt__button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.push-prompt__button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.push-prompt__button--primary {
  background: #ebc2c2;
  color: #1e2e32;
}

.push-prompt__button--ghost {
  background: rgba(239, 235, 253, 0.42);
  color: #1e2e32;
  border: 1px solid rgba(250, 181, 218, 0.4);
}

.push-prompt__feedback {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #9fb6d4;
  min-height: 20px;
}
