﻿/*.voucher-content {
    width: 295px;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;*/ /*10px*/
/*border: 1px dashed #000;*/ /*BORDE CON LINEA PUNTEADA*/
/*margin: 0 auto;
    background: #fff;
    color: #000;
}*/

.voucher-content {
    width: 100%; /* Opción más flexible */
    max-width: 210mm; /* Ajusta al tamaño máximo del papel A4 */
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; /*'Courier New', Courier, monospace;*/
    padding: 10px;
    border: 1px dashed #000;
    margin: 0 auto;
    background: #fff;
    color: #000;
}

@media print {
    body * {
        visibility: hidden;
    }

    #voucher, #voucher * {
        visibility: visible;
    }

    #voucher {
        position: absolute;
        /*left: 0;
        top: 0;*/
        top: 0mm; /* Ajusta la posición desde arriba*/
        left: 0mm; /*Ajunte a la posicion a la izquierda*/
        width: 100%;
    }

    /* Opcional: Si tienes encabezado o pie de página adicional en el body */
    /*header, footer {
        display: none;*/ /* Esto oculta cualquier encabezado o pie de página */
    /*}*/

    /* Estilo del encabezado */
    .print-header {
        text-align: center;
        margin-bottom: 20px; /* Espacio entre encabezado y contenido */
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }

        .print-header h1 {
            margin: 0;
            font-size: 22px;
            font-weight: bold;
        }

        .print-header p {
            margin: 5px 0;
        }

    /* Estilo del pie de página */
    .print-footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

        .print-footer p {
            font-size: 12px;
            margin: 0;
            color: #777;
        }

    /* Configura márgenes específicos si es necesario */
    @page {
        margin: 0;
    }
}
