/* Print styles for results page and general printing */
@media print {
    /* Hide non-essential UI */
    nav,
    header,
    footer,
    .flash,
    .btn-primary,
    .btn-secondary,
    .print\\:hidden,
    .skip-link,
    .flash-dismiss {
        display: none !important;
    }

    /* Force readable colors */
    body {
        background: white !important;
        color: black !important;
        font-size: 11pt;
    }

    a {
        color: black !important;
        text-decoration: none !important;
    }

    /* Show hidden data table for screen readers / print */
    .sr-only-table {
        position: static !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
        clip: auto !important;
        white-space: normal !important;
    }

    /* Page breaks */
    .page-break-before {
        page-break-before: always;
    }

    /* Results page: hide chart canvas, show table */
    canvas {
        display: none !important;
    }
}
