/**
 * A4 print stylesheet – matches online invoice layout.
 */
@page {
	size: A4;
	margin: 12mm;
}

@media print {
	html, body {
		width: 210mm;
		background: #fff !important;
		color: #222 !important;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
	.no-print,
	.sip-toolbar {
		display: none !important;
	}
	.invoice-container {
		max-width: 100% !important;
		padding: 0 !important;
		margin: 0 !important;
	}
	.header {
		page-break-inside: avoid;
	}
	table.items {
		page-break-inside: auto;
	}
	table.items tr {
		page-break-inside: avoid;
	}
	.totals-qr-row,
	.signature-area,
	.footer {
		page-break-inside: avoid;
	}
	.qr-box img {
		width: 90px !important;
		height: 90px !important;
	}
	a {
		text-decoration: none;
		color: inherit;
	}
}
