/* The Notice Container (Hidden by Default) */
#adblock-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transform: translateY(100%); /* Start off-screen */
    transition: transform 0.5s ease-in-out;
}

/* The class our JS will add to show the notice */
#adblock-notice.is-visible {
    transform: translateY(0); /* Slide in from bottom */
}

.adblock-notice-content {
    text-align: center;
    max-width: 600px;
}

.adblock-notice-content h3 {
    margin-top: 0;
    color: #fff;
}

.adblock-notice-content button {
    background-color: #e3482d; /* A reddish color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
}
.adblock-notice-content button:hover {
    background-color: #c93012;
}