
.modal {
  display: none;
  position: fixed;
  z-index: 1; /* Sit on top */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto; /* Enable scrolling inside the modal */
}

.modal-content {
  background-color: #f7f7f7;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  margin: 10% auto;
  padding: 20px;
  position: relative;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
}

/* Styling for the overlay background */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
