/* Modal styles */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed; /* Stay in place */
  z-index: 9999999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
  backdrop-filter: blur(10px); /* Add a blur effect to the background */
}

.modal-content {
  background-color: #fefefe;
  margin: 0 auto; /* center align horizontally */
  padding: 10px;
  width: 40%; /* Could be more or less, depending on screen size */
  height: auto;
  border-radius: 10px; /* Add rounded corners to the modal */
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Close button styles */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}