/* Print Styles for CLT Vacation Calculator */
@media print {
    /* Hide elements not needed for printing */
    .no-print,
    .clt-vc-button-group,
    .wp-block-buttons,
    .wp-block-button,
    button,
    .button,
    input,
    select,
    textarea,
    form,
    .clt-vc-form-fields,
    .clt-vc-options-group {
        display: none !important;
    }

    /* Ensure the calculator results are visible */
    #clt-vc-resultado,
    .clt-vc-result-container,
    .clt-vc-summary {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Improve print layout */
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    /* Add page breaks where needed */
    .page-break {
        page-break-before: always;
    }

    /* Ensure tables don't break across pages */
    table {
        page-break-inside: auto;
    }
    
    tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }
    
    thead {
        display: table-header-group;
    }
    
    tfoot {
        display: table-footer-group;
    }
}
