@media print {
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 11pt;
    }

    .no-print,
    nav,
    button,
    .ui-btn-primary,
    .ui-btn-secondary {
        display: none !important;
    }

    main {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

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

    .ui-card,
    section,
    article {
        border: 1px solid #ccc !important;
        border-radius: 0 !important;
        page-break-inside: avoid;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th, td {
        border: 1px solid #ccc;
        padding: 6px;
    }
}

