.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999; /* Set a high z-index value */
  }
  
  .popup-content {
    text-align: center;
    position: relative;
    z-index: 1000; /* Set a higher z-index for the content */
  }
  
  .popup-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  
  .popup-instructions,
  .popup-zoom-info {
    color: #fff;
    font-size: 14px;
    position: fixed;
    bottom: 10px;
  }
  
  .popup-instructions {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .popup-zoom-info {
    left: calc(50% + 200px); /* Adjust the distance between the two texts */
  }