/* CSS Document */

	 .popup-overlay {
  display: none; /* Hidden by default */
  position: fixed; /* Stays in place even when scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark, semi-transparent background */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  z-index: 1000; /* Ensure it's on top of other content */
}

.popup-content {
  background-color: white;
  padding: 10px;
  border-radius: 8px;
	border:2px solid #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 90%;
	min-width:60%;
	height: auto;
  text-align: center;
}

