#custom-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #popup-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    /* max-width: 50%; */
    max-width: 400px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  #popup-content img {
    /* max-width: 100%; */
    height: auto;
    margin-bottom: 1rem;
  }