/* Popup background */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

/* The popup image (default for desktop) */
.popup-content {
  margin: auto;
  display: block;
  max-width: 80%;
  border-radius: 10px;
}

/* ✅ Make the image appear larger on mobile screens */
@media (max-width: 768px) {
  .popup-content {
    max-width: 95%;     /* make it fill more width */
    max-height: 90vh;   /* limit height to viewport height */
  }
}
