/* ================================
   Membership change confirmation
   ================================ */

.ahr-mp-plan-change-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: grid;
  place-items: center;
  z-index: 9999;
}

.ahr-mp-confirm-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 32px 30px;
  width: min(92vw, 560px);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  position: relative;
  text-align: center;
  animation: ahr-mp-pop-in .18s ease;
}

@keyframes ahr-mp-pop-in {
  from { transform: scale(.96); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}


.ahr-mp-confirm-title {
  font-weight: 700;
  font-size: 25px;
  color: #0f172a;
  margin-bottom: 16px;
}

/* Mobile: slightly smaller title for phone screens */
@media (max-width: 480px) {
  .ahr-mp-confirm-title {
    font-size: 22px;
  }
}

.ahr-mp-confirm-text {
  font-size: 13px;
  line-height: 1.2;
  color: #475569;
  margin-bottom: 25px;
}

.ahr-mp-confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.ahr-mp-plan-change-cancel {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.ahr-mp-plan-change-proceed {
  padding: 10px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}

.ahr-mp-plan-change-cancel {
  background: #e5e7eb;
  border: none;
  color: #374151;
}

.ahr-mp-plan-change-proceed {
  background: #32a2e7;
  border: none;
  color: #ffffff;
}

.ahr-mp-plan-change-proceed:hover {
  background: #228ad0;
}

.ahr-mp-plan-change-cancel:hover {
  background: #414854;
}
