/*
 * Zimozo — keep application chrome off printed receipts.
 *
 * The Apps / Quick Tools launcher (added 2026-03-14) is a full-viewport
 * element: position:fixed, inset:0, z-index:1060, display:flex, hidden only by
 * opacity. The application's own @media print block hides .side-bar and
 * .thetop > aside but was never updated to cover it, so when the panel is open
 * it renders on top of the receipt.
 *
 * This file does ONE thing: hides named overlay elements when printing.
 *
 * Deliberately NOT in this file:
 *   - no universal (*) selectors
 *   - no opacity rules of any kind
 *   - no colour, weight or font changes
 * Nothing here can alter receipt content; it can only remove chrome.
 */

@media print {
    #quick-panel,
    .quick-panel,
    .quick-panel__backdrop,
    .quick-panel__card,
    .app-launcher,
    .app-launcher__top,
    .modal-backdrop,
    .no-print {
        display: none !important;
        visibility: hidden !important;
    }
}
