/**
 * CSS de Proteção de Segurança - DataBook HCI
 */

#security-watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999999;
    overflow: hidden;
}

#security-watermark span {
    position: absolute;
    transform: rotate(-30deg);
    font-size: 12px;
    font-family: Arial, sans-serif;
    color: rgba(150, 150, 150, 0.08);
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
}

input, textarea, [contenteditable="true"] {
    user-select: text !important;
    -webkit-user-select: text !important;
}

#security-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 10000001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#devtools-password-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}
