.popup-overlay {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    width: 300px;
    padding: 10px;
    display: none;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .popup-content {
    display: flex;
    align-items: center;
  }

  .popup-content img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
  }

  .text-content {
    max-width: calc(100% - 75px);
    /* Adjusting for the image width and margin */
  }

  .text-content h2 {
    margin: 10px 0;
    font-size: 14px;
  }

  .text-content p {
    font-size: 12px;
  }