/* Style the sticky bottom ad container */
.sticky-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: transparent;
    padding: 10px;
    border-top: 1px solid #ddd;

    display: flex;
    justify-content: center;
    align-items: center;

  }
  
  /* Style the close button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: none;
    padding: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* Add a minimum size for the close button */
  .close-btn img {
    min-width: 50px;
    min-height: 50px;
  }