/* =========================================================
   PRINT SYSTEM BASE (SAFE FOUNDATION)
   /cards/_system/print-base.css
   ========================================================= */

/* -------------------------
   GLOBAL RESET (SAFE)
-------------------------- */
* {
    box-sizing: border-box;
}

/* -------------------------
   PAGE SETUP (PRINT CORE)
   This affects all print pages uniformly
-------------------------- */
@page {
    size: 8.5in 11in;
    margin: 0;
}

/* -------------------------
   BODY DEFAULTS
-------------------------- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #000;
}

/* -------------------------
   PRINT SAFETY OVERRIDES
   (ONLY GLOBAL BEHAVIOUR)
-------------------------- */
@media print {

    body {
        background: none !important;
    }

    /* ensures no browser-added spacing */
    html, body {
        width: 100%;
        height: 100%;
    }

    /* prevent unwanted scaling artifacts */
    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* hide scrollbars / overflow issues */
    ::-webkit-scrollbar {
        display: none;
    }
}

/* -------------------------
   OPTIONAL: SHARED UTILITIES
   (SAFE REUSABLE HELPERS ONLY)
-------------------------- */

/* center helper (non-structural) */
.u-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* text utility */
.u-bold {
    font-weight: bold;
}

.u-small {
    font-size: 12px;
}

/* spacing helper */
.u-pad {
    padding: 0.3in;
}