#popup {
  justify-content: center;
  width: 100%;
  height: 100%;
  /* z-index: 999;
  position: fixed;
  display: flex; */
}

.popup {
  width: 50%;
  display: none;
  /* Hidden by default */
  color: black;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0);
  /* padding: 20px; */
  /* border: 2px solid #ccc; */
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  /* Above overlay */
}

.popup img {
  width: 100%;
  border-radius: 20px;
}

.popup.active {
  display: block;
}

.overlay {
  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 background */
  z-index: 1000;
  /* Below popup */
}

.overlay.active {
  display: block;
  /* Show when active */
}

.overlay:hover {
  cursor: pointer;
}

/* Responsive Design for PC */
@media (min-width: 1024px) {
  .popup {
    width: 250px;
    /* Larger popup width for bigger screens */
  }
}