.ad-wrapper {
    position: relative;
    text-align: center; /* Center the content in the wrapper */
  }
  
    .adsense-ad {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .adsense-container {
    position: relative;
    z-index: 10;
    margin: 0 auto;
  }

  /* Show desktop or mobile ad based on screen size */
  .desktop-ad {
    display: none;
  }
  .mobile-ad {
    display: none;
  }

  @media (min-width: 768px) {
    .desktop-ad {
      display: inline-block;
    }
  }

  @media (max-width: 767px) {
    .mobile-ad {
      display: inline-block;
    }
  }