/* Druckansichten. Etikettenformat und Lieferschein kommen in Phase 2/3 dazu;
   hier steht die Grundlage: alles Bedienende verschwindet. */

@media print {
    .site-header,
    .site-footer,
    .flash-stack,
    .page-actions,
    .filter-bar,
    .btn,
    .nav-toggle {
        display: none !important;
    }

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

    .container, .site-main {
        max-width: none;
        padding: 0;
        margin: 0;
    }

    .card {
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0 0 8mm;
        break-inside: avoid;
    }

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

    table.data th, table.data td {
        border: 1px solid #999;
        padding: 2mm;
    }

    table.data thead th {
        background: #eee;
        color: #000;
    }

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