.ad-container {
    position: fixed; 
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 1000;
  }

  .ad-content {
    background-color: white; 
    border: 1px solid white;
    padding: 1px;
    width: 300px; 
    height: auto; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative; 
    display: flex; 
    flex-direction: column; 
    flex-shrink: inherit;
    justify-content: center;
    align-items: center; 
    overflow: hidden; 
    text-align: center;
  }

  .ad-content img {
    max-width: 100%; 
    max-height: 300px; 
    object-fit: contain; 
  }

  .skip-button {
    margin-top: 10px; 
    background-color: #fd7e14;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    display: none; 
    border-radius: 10px;
  }