/* Modal overlay */
.ejb-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Modal box */
.ejb-modal-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  margin: 10% auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Close button */
.ejb-close {
  float: right;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

/* Title */
.ejb-modal-content h2 {
  margin-top: 0;
  color: #222;
  font-size: 20px;
}

/* Paragraph */
.ejb-modal-content p {
  font-size: 15px;
  color: #444;
  margin: 15px 0;
}

/* Action button */
.ejb-btn {
  display: inline-block;
  background: #02699d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.ejb-btn:hover {
  background: #02354f;
}
