/* Popup container - hidden by default */
.popup {
  display: none; /* Ensures the popup is hidden initially */
  position: fixed;
  z-index: 1000; /* Ensures it appears above other elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Aligns the popup content to the top */
  padding-top: 50px; /* Adds some spacing from the top */
  padding-left: 20%;
}

/* Popup content */
.popup-content {
  background-color: #fff;
  padding: 0px 5px 0px 5px;
  border: 1px solid #888;
  width: 78%;
  max-width: 1020px;
  max-height: 680px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Close button */
.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-button:hover {
  color: black;
}