#adblock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.note {
    position: relative;
    padding: 20px 30px 20px 50px;
    background-color: #e1f5fe;
    color: #01579b;
    font-size: 0.95rem;
    line-height: 1.62em;
    border-radius: 5px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.note:before {
    content: '\2605';
    position: absolute;
    left: 18px;
    font-size: 20px;
}
.noteAlert {
    background-color: #ffdfdf;
    color: #e65151;
}
.noteAlert:before {
    content: '\2691';
}
