/* Sticky Footer Container */
#sticky-ad-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff; /* Change this to #1a1a1a if your site has a dark mode */
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 99999; /* Keeps it above all other elements */
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Close Button */
#close-sticky-ad {
    position: absolute;
    top: -20px;
    right: 15px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}
#close-sticky-ad:hover {
    background: #c0392b;
}

/* Desktop vs Mobile Swap */
.sticky-desktop-ad {
    display: block;
}
.sticky-mobile-ad {
    display: none;
}

/* Media Query for Phones and Small Tablets */
@media (max-width: 768px) {
    .sticky-desktop-ad {
        display: none;
    }
    .sticky-mobile-ad {
        display: block;
    }
}