/* 
    Created on : 7 may 2025, 12:26:48
    Author     : Seba
*/
.print-header{display: none;}
.print-footer{display: none;}


@media print {
    
    .print-header {
        display: flex;
        align-items: center;
        padding: 20px;
        border-bottom: 2px solid #333;
        margin-bottom: 20px;
    }
    
    .print-footer {
      display: block;
      /*align-items: center;
      padding: 20px;
      border-bottom: 2px solid #333;
      margin-bottom: 20px;*/
    }  
    
    /* Oculta otros elementos que no necesitas en la impresión */
    .no-print {
        display: none !important;
    }
    
    .print-header img {
        max-width: 150px;
        height: auto;
        margin-right: 20px;
    }    
    
    .header-content {
        flex-grow: 1;
    }

    .header-content h1 {
        margin: 0;
        font-size: 24px;
    }

    .header-content p {
        margin: 2px 0;
        font-size: 14px;
    }    
    
    
}

