/* Full-page overlay to grey out the background */
#unltd-overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* semi-transparent black */
    z-index: 999;
}

/* Banner styling */
#unltd-banner {
    display: grid;
    grid-row-gap: 1.5em;
    align-content: center;
    justify-content: center;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #eeb652;
    padding: 2em;
    z-index: 1000;
    text-align: center;
    width: 80%;
    min-height: 60vh;
    pointer-events: auto;
}

/* Style the button inside the banner */
#unltd-banner .unltd-button {
    margin: 0 10px;
    text-decoration: none;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
}

/* Style the "Not interested" link */
#unltd-banner .unltd-not-interested {
    margin-left: 10px;
    color: #d7d7d7;
    cursor: pointer;
    text-decoration: underline;
}
