body {
    background-color: #f8f9fa;
}

/* Hide the print container by default */
.print-only {
    display: none;
}

/* Print Styles */
@media print {
    /* Hide everything in the main app UI */
    .no-print {
        display: none !important;
    }
    
    /* Show the print container */
    .print-only {
        display: block;
        width: 100%;
    }

    /* Reset background for saving ink */
    body {
        background-color: white;
    }

    /* Prevent page breaks inside form components */
    .formio-component {
        page-break-inside: avoid;
    }
    
    /* Ensure layout takes full page width */
    @page {
        size: auto;
        margin: 15mm;
    }
}
