/* Style the modal */
.modal {
  position: fixed; /* Position the modal in the center of the page */
  z-index: 1; /* Make the modal appear above other elements on the page */
  padding-top: 100px; /* Set a top padding to make some space for the modal */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scrollbars if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Dark background */
}
