/* Estilos optimizados para impresión en impresoras térmicas (80mm y 58mm) */

.ticket-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: #fff;
    padding: 12px;
    font-family: 'Courier New', Courier, monospace, sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.3;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ticket-header {
    text-align: center;
    border-bottom: 1px dashed #000;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.ticket-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.ticket-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
    font-size: 12px;
}

.ticket-table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0;
    font-size: 12px;
}

.ticket-table th {
    border-bottom: 1px dashed #000;
    padding: 4px 0;
    text-align: left;
}

.ticket-table td {
    padding: 3px 0;
}

.ticket-divider {
    border-top: 1px dashed #000;
    margin: 6px 0;
}

.ticket-totals {
    margin-top: 6px;
    border-top: 1px dashed #000;
    padding-top: 6px;
}

.ticket-footer {
    text-align: center;
    margin-top: 12px;
    padding-top: 6px;
    border-top: 1px dashed #000;
    font-size: 11px;
}

@media print {
    @page {
        margin: 0;
        size: 80mm auto;
    }
    
    body * {
        visibility: hidden !important;
    }
    
    .ticket-printable, .ticket-printable * {
        visibility: visible !important;
    }
    
    .ticket-printable {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 76mm !important;
        max-width: 76mm !important;
        margin: 0 !important;
        padding: 4mm !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .no-print {
        display: none !important;
    }
}
