@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.aae-deactivate-modal {
  font-family: "Inter", sans-serif;
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.aae-deactivate-modal input[type=radio]:checked::before {
  background-color: #f00;
}
.aae-deactivate-modal .modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
}
.aae-deactivate-modal .modal-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid #e5e5e5;
  background: white;
  color: #333;
}
.aae-deactivate-modal .modal-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aae-deactivate-modal .modal-header .header-content .header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.aae-deactivate-modal .modal-header .header-content .header-left .wp-logo {
  width: 24px;
  height: 24px;
  background: #f56500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}
.aae-deactivate-modal .modal-header .header-content .header-left .wp-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.aae-deactivate-modal .modal-header .header-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.aae-deactivate-modal .modal-header .header-content .close-btn {
  cursor: pointer;
  font-size: 28px;
  color: #666;
  transition: color 0.2s ease;
  line-height: 1;
}
.aae-deactivate-modal .modal-body {
  padding: 24px;
}
.aae-deactivate-modal .modal-body .question {
  margin-bottom: 24px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.aae-deactivate-modal .modal-body .feedback-form .radio-group {
  margin-bottom: 16px;
}
.aae-deactivate-modal .modal-body .feedback-form .radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 4px 0px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  margin-bottom: 8px;
}
.aae-deactivate-modal .modal-body .feedback-form .radio-group label input[type=radio] {
  margin-right: 12px;
  accent-color: #f56500;
  transform: scale(1.1);
  box-shadow: none;
}
.aae-deactivate-modal .modal-body .feedback-form .radio-group label input[type=radio]:focus {
  outline: none;
  border-color: #f56500;
}
.aae-deactivate-modal .modal-body .feedback-form .radio-group label span {
  color: #555;
  font-size: 14px;
  font-weight: 400;
}
.aae-deactivate-modal .modal-body .feedback-form .other-reason {
  display: none;
  margin-top: 16px;
  padding-left: 28px;
}
.aae-deactivate-modal .modal-body .feedback-form .other-reason textarea {
  width: 100%;
  height: 100px;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  resize: vertical;
  font-size: 14px;
  transition: border-color 0.2s ease;
  box-shadow: none;
}
.aae-deactivate-modal .modal-body .feedback-form .other-reason textarea:focus {
  outline: none;
  border-color: rgba(255, 0, 0, 0.651);
}
.aae-deactivate-modal .modal-body .feedback-form .other-reason textarea::-moz-placeholder {
  color: #999;
}
.aae-deactivate-modal .modal-body .feedback-form .other-reason textarea::placeholder {
  color: #999;
}
.aae-deactivate-modal .modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aae-deactivate-modal .modal-footer .skip-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.aae-deactivate-modal .modal-footer .skip-btn:hover {
  color: #333;
  background-color: #e9ecef;
}
.aae-deactivate-modal .modal-footer .submit-btn {
  background: #f56500;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.aae-deactivate-modal .modal-footer .submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 101, 0, 0.4);
}
.aae-deactivate-modal .modal-footer .submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .aae-deactivate-modal .modal-content {
    margin: 10% auto;
    width: 95%;
  }
  .aae-deactivate-modal .modal-header {
    padding: 20px;
  }
  .aae-deactivate-modal .modal-header .header-content h3 {
    font-size: 18px;
  }
  .aae-deactivate-modal .modal-body {
    padding: 20px;
  }
  .aae-deactivate-modal .modal-footer {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
  }
  .aae-deactivate-modal .modal-footer .skip-btn,
  .aae-deactivate-modal .modal-footer .submit-btn {
    width: 100%;
    text-align: center;
  }
}