.detector_blur {
    filter: blur(7px);
    pointer-events: none;
}

.detector-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.4);
}

.detector-modal p{
    font-size: larger;
}

.detector-modal-content {
    display: flex;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 750px;
    border: black 5px solid;
    flex-direction: column;
    align-items: center;
}

.detector-modal-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.detector-subscribe-btn {
    display: block;
    width: 100%;
    padding: .8em 2em;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.detector-subscribe-btn:hover {
    background-color: #0056b3;
}
