/* Dark background overlay spanning the whole screen */
.overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
/* Modal Content Box */
.modal-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
/* Class to dynamically display the modal */
.overlay.show {
  display: flex;
}
