.promptExampleBtn {
  background-color: #1ca125;
}
.promptExampleBtn:hover {
  background-color: #15861a;
}

/* The full-screen overlay */
.custom-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The white box */
.custom-popup-content {
  background-color: #fff;
  width: 90%;
  max-width: 900px;
  /* Adjust based on preference */
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  font-family: sans-serif;
  /* Or your theme font */
}

/* Close Button Area */
.popup-close-wrap {
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #000;
}

.close-icon {
  font-size: 24px;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1;
}

/* Main Heading */
.popup-heading {
  color: #ba0d26;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: bold !important;
  line-height: 1.3;
}

/* Column Layout */
.popup-columns {
  display: flex;
  gap: 40px;
  /* Space between columns */
}

.popup-col {
  flex: 1;
  /* Makes columns equal width */
}

/* Column Sub-headings */
.col-title {
  color: #1ca125;
  font-weight: bold !important;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: capitalize;
}

/* Paragraph text */
.popup-col p {
  line-height: 1.5;
  color: #333;
  font-size: 16px;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .popup-columns {
    flex-direction: column;
    gap: 20px;
  }

  .custom-popup-content {
    padding: 20px;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
  }
}