/* Disable User Selection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection in inputs */
input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Screenshot Overlay */
#wpsa-shield-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    display: none;
    z-index: 999999;
    text-align: center;
    padding-top: 20%;
    font-size: 40px;
    font-weight: bold;
    pointer-events: none;
}

/* Blur Class */
.wpsa-blurred {
    filter: blur(5px);
}