.pushengage-deactivation-feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pushengage-deactivation-feedback-modal-body {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.pushengage-deactivation-feedback-modal-body-header {
  padding: 24px 24px 0 24px;
  border-bottom: 1px solid #e1e5e9;
  background-color: #f6f7f6;
}

.pushengage-deactivation-feedback-modal-body-header h3 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: #7a7676;
}

.pushengage-deactivation-fb-title {
  font-weight: 600;
}

.pushengage-deactivation-feedback-modal-body-content {
  padding: 24px;
}

.pushengage-deactivation-feedback-modal-body-content p {
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-size: 14px;
}

/* Feedback Reasons */
.pushengage-feedback-reasons {
  margin-bottom: 20px;
}

.pushengage-feedback-reason {
  display: block;
  cursor: pointer;
  padding: 4px 0;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.pushengage-feedback-reason input[type="radio"] {
  margin-right: 12px;
  vertical-align: middle;
}

.pushengage-feedback-reason span {
  font-size: 14px;
  color: #1d2327;
  vertical-align: middle;
}

/* Feedback Details Textarea */
.pushengage-feedback-details {
  margin-bottom: 20px;
}

.pushengage-feedback-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdcde;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.pushengage-feedback-textarea:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

/* Footer */
.pushengage-deactivation-feedback-modal-body-footer {
  padding: 16px 24px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e1e5e9;
  background-color: #f6f7f7;
  border-radius: 0 0 8px 8px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .pushengage-deactivation-feedback-modal-body {
    width: 95%;
    margin: 20px;
  }

  .pushengage-deactivation-feedback-modal-body-content {
    padding: 16px;
  }

  .pushengage-deactivation-feedback-modal-body-header {
    color: #646970;
    padding: 16px 16px 0 16px;
  }

  .pushengage-deactivation-feedback-modal-body-footer {
    padding: 12px 16px 16px 16px;
    flex-direction: column;
    gap: 12px;
  }
}
