#discontinue-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}
#discontinue-modal-overlay.active {
  display: flex;
}
#discontinue-modal-box {
  background: #e8401c;
  color: white;
  padding: 30px 40px;
  max-width: 720px;
  width: 90%;
  border-radius: 6px;
  text-align: center;
  position: relative;
  font-family: Arial, sans-serif;
}
#discontinue-modal-box h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: white;
}
#discontinue-modal-box p {
  font-size: 15px;
  line-height: 1.5;
  color: white;
}
#discontinue-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: white;
  background: none;
  border: none;
}
