  #customImagePopupContainer {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
  }

  #customImagePopup {
    width: 300px; /* Adjust as needed */
    height: auto;
    display: block;
    position: relative;
  }

  #closePopupBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #666;
    border: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    cursor: pointer;
    padding: 1px;
    line-height: 1px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    text-shadow: 1px 1px 0px #fff;
    z-index: 10000;
  }

  #giftButton {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    cursor: pointer;
    /* background: url('/assets/growai/msh-icon-bg-transparent.png') no-repeat center center; */
    background: url('/assets/growai/msh-icon-bg-white.png') no-repeat center center;
    background-size: cover;
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    border: none;
    border-radius: 50%;
    transition: opacity 0.5s ease, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
  }

  #customImagePopupContainer.visible, #giftButton.visible {
    opacity: 1;
    visibility: visible;
  }
