/* ── Not found ──────────────────────────────────── */
.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.not-found-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.not-found h2 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #101828;
}

.not-found p {
    margin: 0 0 1.5rem;
    font-size: 0.92rem;
    color: #667085;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
    color: #344054;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.12s, border-color 0.12s;
}

    .btn-back:hover {
        background: #f2f4f7;
        border-color: #98a2b3;
    }



.print-only {
    display: none !important;
}

@media print {
    .no-print {
        display: none !important;
        visibility: collapse !important;
    }

    .print-only {
        display: block !important;
    }

    col.no-print,
    td.no-print,
    th.no-print {
        display: none !important;
    }

    /* show table footer at end of print, no every page-end */
    tfoot {
        display: table-row-group;
    }
}
