/**
 * ============================================================================
 * XOEY - Estilos para Impresión de Relación de Pedidos
 * ============================================================================
 * 
 * CSS dedicado para la vista de impresión de relación de pedidos (orders/actions/print_orders_list.php)
 * 
 * @version 1.0.0
 * @author Xoey Team
 */

/* ============================================================================
   Header Simplificado
============================================================================ */
.xoey-header-info {
    margin-top: 8px;
    font-size: 9pt;
    color: #666;
    line-height: 1.4;
}

/* ============================================================================
   Tabla de Lista de Pedidos
============================================================================ */
.xoey-orders-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.xoey-orders-list-table th {
    background: #f8f9fa;
    padding: 6px 8px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    font-size: 8.5pt;
}

.xoey-orders-list-table td {
    padding: 6px 8px;
    border-bottom: 1px solid #e9ecef;
    font-size: 8.5pt;
}

.xoey-orders-list-table .xoey-cliente-info {
    line-height: 1.4;
}

.xoey-orders-list-table .xoey-cliente-name {
    display: block;
    font-weight: 600;
}

.xoey-orders-list-table .xoey-cliente-username {
    display: block;
    font-size: 7.5pt;
    color: #666;
    font-style: italic;
    margin-top: 2px;
}

.xoey-orders-list-table tr:last-child td {
    border-bottom: none;
}

.xoey-orders-list-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* ============================================================================
   Resumen Simple
============================================================================ */
.xoey-summary-simple {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px 20px;
    margin-bottom: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 8.5pt;
}

.xoey-summary-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
}

.xoey-summary-item-label {
    font-size: 8.5pt;
    color: #666;
    font-weight: 600;
}

.xoey-summary-item-value {
    font-size: 8.5pt;
    font-weight: bold;
    color: #aa5e85;
}

/* ============================================================================
   Información de Filtros
============================================================================ */
.xoey-filter-info {
    background: #e9ecef;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 10pt;
}

.xoey-filter-info strong {
    color: #aa5e85;
}

/* ============================================================================
   Badges de Estado
============================================================================ */
.xoey-badge-estado {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9pt;
    font-weight: 600;
}

.xoey-badge-pendiente {
    background: #fff3cd;
    color: #856404;
}

.xoey-badge-preparacion {
    background: #d1ecf1;
    color: #0c5460;
}

.xoey-badge-completado {
    background: #d4edda;
    color: #155724;
}

