/* ======================================================
   ESTILOS DEL PIE DE PÁGINA (ADAPTADO AL TEMA OSCURO)
   Basado en la paleta de colores de index.css
   ====================================================== */

/* Importamos la fuente por si este módulo se carga solo */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

.footer-legal-system {
    display: block;
    width: 100%;
    text-align: center;
    padding: 25px 10px;
    margin-top: 40px;
    
    /* === INTEGRACIÓN CON TU TEMA === */
    font-family: 'Roboto', Arial, sans-serif; /* Tu fuente oficial */
    background-color: #1e1e1e !important;    /* El mismo gris de tu Sidebar/Header */
    border-top: 1px solid #333333 !important; /* Tu color de borde estándar */
    color: #888888 !important;                /* Tu color de texto secundario */
}

/* Textos destacados (Nombres y Títulos) */
.footer-legal-system strong {
    font-weight: 500; /* Roboto Medium */
    color: #e0e0e0 !important; /* Blanco suave (como tus tablas) */
}

/* Efecto hover opcional en los nombres para dar un toque "tech" */
.footer-legal-system strong:hover {
    color: #00bcd4 !important; /* Tu color Cyan oficial al pasar el mouse */
    transition: color 0.3s ease;
    cursor: default;
}

/* === TAMAÑOS Y ESPACIADO === */
.footer-titulo {
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00bcd4 !important; /* Título en Cyan para resaltar */
}

.footer-licencia {
    margin-bottom: 15px;
    font-size: 13px;
}

.footer-creditos {
    font-size: 11px;
    opacity: 0.7;
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   🚫 OCULTAR AL IMPRIMIR O GENERAR PDF
   ========================================= */
@media print {
    .footer-legal-system {
        display: none !important;
    }
}

