
/* The Modal (background) */
.modal1 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100001 !important;  /* Sit on top */
  padding-top: 30px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal1-content {
  background-color: #fefefe;
  border-radius: 10px;
  margin: auto;
  padding: 20px;	 
  border: 1px solid #888;
  width: 950px;
}

.modal1-content-scrollable {
        max-height: 500px; /* Adjust as needed, e.g., calc(100vh - 200px) */
        overflow-y: auto; /* Adds scrollbar only when content exceeds max-height */
        /* overflow-y: scroll; /* Always shows scrollbar, even if not needed */
    }

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
