/*
 * Customer Tags (TA00182) — on-screen only.
 *
 * Tags are an internal aid for staff working in the ERP. They must never reach a
 * hard copy: no printed page, no print-to-PDF, no printed modal.
 *
 * This lives in a linked stylesheet on purpose. The print-a-modal button used
 * across the app (printThis) copies <link> stylesheets into its print iframe but
 * NOT inline <style> blocks (its defaults are importCSS:true, importStyle:false),
 * so a rule written inline in the layout would silently miss those printouts.
 */
/* The label is painted from data-tag, never stored as a text node — see
 * App\ContactTag::badge(). Anything that exports by stripping markup and keeping
 * the text (DataTables CSV/Excel/PDF/Copy/Print, clipboard, printThis) therefore
 * carries nothing at all. */
.customer-tag-badge::after {
    content: attr(data-tag);
}

@media print {
    .customer-tag-badge {
        display: none !important;
    }
}
