/* ============================================================
   PRINT STYLES (RELATÓRIOS E COMPROVANTES)
   ============================================================ */
@media print {
    @page { margin: 10mm; }
    body { background-color: #fff !important; color: #000 !important; }
    
    /* Hide navigation and UI controls */
    .sidebar, .sidebar-menu, .topbar, .page-header, .page-actions, .info-card, .btn:not(.print-only), .toast-container, .modal-backdrop, .filters-container { 
        display: none !important; 
    }
    
    /* Expand content area */
    .main-content { 
        margin: 0 !important; 
        padding: 0 !important; 
        width: 100% !important; 
        max-width: 100% !important; 
    }
    
    /* Remove card styling for printing */
    .card { 
        box-shadow: none !important; 
        border: none !important; 
        padding: 0 !important; 
        margin: 0 !important; 
    }
    
    /* Typography adjustments */
    .page-title { 
        font-size: 24pt !important; 
        color: #000 !important; 
        margin-bottom: 5px !important; 
    }
    .page-subtitle { 
        font-size: 12pt !important; 
        color: #666 !important; 
        margin-bottom: 20px !important; 
    }
    
    /* Table specific print styles */
    .table-container {
        overflow: visible !important;
    }
    .data-table { 
        border-collapse: collapse !important; 
        width: 100% !important; 
        margin-bottom: 20px !important; 
    }
    .data-table th, .data-table td { 
        border: 1px solid #ddd !important; 
        padding: 8px !important; 
        text-align: left !important; 
        color: #000 !important; 
        font-size: 10pt !important;
    }
    .data-table th { 
        background-color: #f3f4f6 !important; 
        font-weight: bold !important; 
        -webkit-print-color-adjust: exact; 
        print-color-adjust: exact; 
    }
    
    /* Badges */
    .badge { 
        border: 1px solid #aaa !important; 
        color: #000 !important; 
        background: transparent !important; 
    }
    
    /* Print Header (Only visible on print) */
    .print-header { 
        display: block !important; 
        text-align: center; 
        margin-bottom: 20px; 
        border-bottom: 2px solid #ea580c; 
        padding-bottom: 10px; 
    }
    .print-header h1 { 
        margin: 0; 
        font-size: 24pt; 
        color: #ea580c !important; 
        -webkit-print-color-adjust: exact; 
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
    }
    .print-header h1 span {
        color: #000 !important;
    }
    .print-header p { 
        margin: 0; 
        font-size: 10pt; 
        color: #666; 
    }
}

/* Hide print header on screen */
@media screen {
    .print-header { display: none !important; }
}

/* Ocultar dashboard na impressao */
@media print { .grid-3 { display: none !important; } }

