.simple-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.simple-modal.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  max-width: 500px;
  width: 90%;
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Progress bar container */
.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* Each step in the progress bar */
.step {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #5CB55D;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  color: #5CB55D;
  font-weight: bold;
  background-color: #fff;
  transition: all 0.3s;
}

/* Styling for completed steps */
.step.completed {
  background-color: #5CB55D;
  color: #fff;
}
