/* assets/seguridad_pdf.css */

/* BLINDAJE CAPA 1: Destrucción de la vista de impresión del navegador */
@media print {
    body {
        visibility: hidden !important;
        display: none !important;
    }
    html {
        background-color: #121212 !important;
    }
    html::before {
        content: "⚠️ IMPRESIÓN BLOQUEADA. Este material está estrictamente protegido por derechos de autor.";
        color: #D4AF37;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        font-size: 24px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        font-weight: bold;
        text-align: center;
        padding: 20px;
    }
}

/* Evitar la selección de texto en todo el ecosistema del Modal PDF */
#modal-visor-pdf * {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}