/* Locks page when popup visible */
html, body { height: 100%; }
/* Lock body scroll when popup active */
body.hcp-locked {
  overflow: hidden;
}

/* Overlay that sits above content but allows blur */
.hcp-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  backdrop-filter: blur(6px);   /* This creates the blur effect */
  background: rgba(255, 255, 255, 0.4); /* light transparent layer */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup box */
.hcp-popup {
  background: #fff;
  max-width: 640px;
  width: 92%;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  text-align: left;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  z-index: 100000; /* sit above blur */
}

.hcp-popup h2 { font-size: 32px; margin: 0 0 10px; }
.hcp-popup p  { color: #6b7280; line-height: 1.6; margin: 10px 0; }

.hcp-buttons { margin-top: 22px; display: flex; gap: 16px; justify-content: space-between; align-items: center; }
.hcp-btn { cursor: pointer; padding: 10px 18px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; display: inline-block; }
.hcp-btn.accept { background: #6896ce; color: #fff; border: none; }
.hcp-btn.decline { background: #fff; color: #000; border: 2px solid #6896ce; }
.hcp-accept-form { display: inline; margin: 0; }
