body.blurred {
    filter: blur(5px);
    pointer-events: none; 
}

.km-adblock-detector-modal {
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease; /* Fade effect */
    position: fixed;
    display: flex;
    top: 0;
    font-size: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 700px;
    height: 320px;
    background-color: #bc3e3e;
    color:white;
    text-align: center;
    padding: 20px;
    z-index: 1000;
    margin: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.km-adblock-detector-modal.show {
    display: flex; /* Show the modal */
    opacity: 1; /* Fade in */
}

.km-adblock-detector-modal h2 {
    margin-bottom: 15px;
}

.km-adblock-detector-modal * {
    color:#ffffff;
}