/* Activate Plan Modal Overlay */
.activate-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: activateFadeIn 0.2s ease-out;
}

@keyframes activateFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal Content */
.activate-modal-content {
  background: white;
  border-radius: 6px;
  padding: 40px 36px 36px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); */
  animation: activateSlideUp 0.3s ease-out;
}

@keyframes activateSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Confirmation Image */
.activate-modal-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
  animation: activateScaleIn 0.4s ease-out 0.1s backwards;
}

@keyframes activateScaleIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* Title */
.activate-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

/* Message */
.activate-modal-message {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.activate-modal-message strong {
  color: #1a1a1a;
}

/* Actions Row */
.activate-modal-actions {
  display: flex;
  gap: 12px;
}

/* Reactivate Button */
.activate-modal-btn {
  display: inline-block;
  /* width: 100%; */
  padding: 14px 24px;
  border: none;
  background: #35659E;
  color: white;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: auto;
}

.activate-modal-btn:active:not(:disabled) {
  transform: translateY(0);
}

.activate-modal-btn:disabled {
  background: #9e9e9e;
  cursor: not-allowed;
}

/* No Button */
.activate-modal-btn--no {
  background: transparent;
  color: #35659E;
  border: 2px solid #35659E;
}

.activate-modal-btn--no:disabled {
  background: transparent;
  color: #9e9e9e;
  border-color: #9e9e9e;
}

/* Responsive */
@media (max-width: 480px) {
  .activate-modal-content {
    padding: 32px 24px 28px;
    width: 92%;
  }

  .activate-modal-title {
    font-size: 20px;
  }

  .activate-modal-message {
    font-size: 13px;
  }

  .activate-modal-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
