.pulsegear-message-popup-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(123, 63, 242, 0.18);
  padding: 32px 24px;
  max-width: 420px;
  margin: 40px auto;
  position: relative;
}

.pulsegear-message-heading {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #22223b;
  text-align: center;
}

.pulsegear-message-textarea {
  width: 100%;
  min-height: 120px;
  border-radius: 10px;
  border: 2px solid #98388d;
  padding: 16px;
  font-size: 1rem;
  margin-bottom: 28px;
  resize: vertical;
  transition: border-color 0.2s;
}

.pulsegear-message-textarea:focus {
  border-color: #98388d;
  outline: none;
  background: #faf6ff;
}

.pulsegear-message-button {
  width: 100% !important;
  /* background: linear-gradient(90deg, #7b3ff2 0%, #98388d 100%); */
  background-color: #fff;
  color: #98388d !important;
  border: 1px solid #98388d !important;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(123, 63, 242, 0.12);
}

.pulsegear-message-button:hover {
  background: #98388d !important;
  color: #fff !important;
}

#pulsegear-message-response {
  margin-top: 16px;
  min-height: 20px;
  text-align: center;
  font-weight: 500;
}

.pulsegear-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 9999;
}
.pulsegear-modal-content {
  background: #fff;
  max-width: 480px;
  margin: 10% auto;
  padding: 24px;
  border-radius: 10px;
  position: relative;
}
.pulsegear-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
}
