.hidden {
    display: none;
  }

  .popup {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 60px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .popup-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 90%;
    height: 60%;
    position: relative;
    left: 5%;
    top: 20%;
  }

  .close {
    position: absolute;
    top: 3px;
    right: 10px;
    cursor: pointer;
  }
  
  .ad-container {


  display: flex;
      justify-content: center;
      align-items: center;
   min-width: 250px;


}

  #continue {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Media query for larger screens */
  @media screen and (min-width: 768px) {
    .popup-content {
      padding: 100px;
      width: 60%;
      height: 60%;
      left: 20%;
      top: 25%;
    }
  }

  #disable-adblock-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
}

#disable-adblock-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 1.2em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}