/* Print styles for Order Confirmation page */
@media print {
    /* Hide navigation and non-essential elements */
    nav, 
    .breadcrumb,
    button,
    .d-print-none {
        display: none !important;
    }
    
    /* Ensure all content is visible */
    body {
        padding: 0;
        margin: 0;
        font-size: 12pt;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    /* Remove shadows and borders that might not print well */
    .shadow-lg {
        box-shadow: none !important;
    }
    
    /* Ensure tables display properly */
    table {
        width: 100%;
        border-collapse: collapse;
    }
    
    th, td {
        border: 1px solid #ddd;
    }
    
    /* Add page break control */
    .page-break {
        page-break-before: always;
    }
    
    /* Format the order header nicely */
    .order-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    /* Ensure dark background colors print properly */
    .bg-gray-50, .bg-gray-100, .bg-blue-50, .bg-green-50 {
        background-color: white !important;
    }
    
    /* Expand all content to full width */
    .max-w-4xl {
        max-width: 100% !important;
    }
    
    /* Make sure text is black for better printing */
    body {
        color: black !important;
    }
} 