.popup-container {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  z-index: 9999; /* Ensure it's on top of other content */
  display: flex; /* For centering the content */
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: transparent; /* Makes the content area itself transparent */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative; /* For positioning the close button */
}

.close-button {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 5em;
  cursor: pointer;
}