  #popupOverlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    #popupBox {
      background: white;
      padding: 0;
      border-radius: 8px;
      max-width: 500px;
      width: 90%;
      position: relative;
    }

    #popupBox img {
      width: 100%;
      border-radius: 8px 8px 0 0;
    }

    .popup-buttons {
      display: flex;
      justify-content: space-between;
      padding: 10px;
    }

    .popup-buttons button {
      padding: 10px 20px;
      border: none;
      background: #333;
      color: white;
      border-radius: 5px;
      cursor: pointer;
    }

    .popup-buttons button:hover {
      background: #555;
    }