/* ========================================
   SISTEMA DE PROTECCIÓN WEB GLOBAL
   ======================================== */

/* Modal de advertencia */
.proteccion-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.proteccion-contenido {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #dc3545;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 90%;
}

.proteccion-icono {
    margin-bottom: 20px;
}

.proteccion-titulo {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.proteccion-subtitulo {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.proteccion-boton {
    background: #dc3545;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.proteccion-boton:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* Aviso de contenido protegido */
.proteccion-aviso {
    background: #e7f3ff;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Estilos para mensajes en consola */
.proteccion-console-header {
    color: #dc3545; 
    font-size: 18px; 
    font-weight: bold; 
    background: #f8f9fa; 
    padding: 8px; 
    border: 1px solid #dc3545;
}

.proteccion-console-message {
    color: #dc3545; 
    font-size: 14px; 
    font-weight: 500;
}

.proteccion-console-welcome {
    color: #007bff; 
    font-size: 16px; 
    font-weight: bold;
}

.proteccion-console-info {
    color: #6c757d; 
    font-size: 14px;
}

.proteccion-console-reminder {
    color: #dc3545; 
    font-size: 12px; 
    background: #fff3cd; 
    padding: 4px;
} 