/* Print styles for labels and other printable surfaces */
.label-toolbar {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.label-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: center;
    border: 2px solid #000;
    padding: 16px;
    max-width: 640px;
}

.label-code {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-code canvas,
.label-code img,
.label-code svg {
    width: 160px;
    height: 160px;
}

.label-lot {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.label-item {
    font-size: 18px;
    margin-bottom: 12px;
}

.label-meta {
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    gap: 6px;
}

@page {
    margin: 0;
}

@media print {
    .no-print {
        display: none !important;
    }

    body {
        margin: 0 !important;
        padding: 0 !important;
    }

    .print-surface {
        margin: 0 !important;
        padding: 0 !important;
    }

    .print-label {
        width: 80mm;
        height: 50mm;
    }

    .print-label-58mm {
        width: 58mm;
        height: 40mm;
    }

    .print-a4 {
        width: 210mm;
        height: 297mm;
    }

    .label-card {
        border: none;
        margin: 0;
        max-width: none;
    }

    .label-grid {
        display: grid;
        grid-template-columns: 40mm 1fr;
        gap: 4mm;
    }

    .label-code {
        width: 38mm;
        height: 38mm;
    }

    .label-code canvas,
    .label-code img,
    .label-code svg {
        width: 38mm;
        height: 38mm;
    }

    .label-title {
        font-size: 16pt;
        font-weight: 700;
    }

    .label-sub {
        font-size: 10pt;
    }
}
