/* ------------------------------------------------------------------
   Printable documents (invoice, agreement) — shared by the on-screen
   document pages, the browser's print output AND mPDF. Keep it
   mPDF-safe: table layouts (no flexbox), plain color values (no CSS
   variables), physical units.
   ------------------------------------------------------------------ */

.document-page {
	background: #fff;
	color: #1a1a1a;
	width: 210mm;
	min-height: 297mm;
	margin: 1.5rem auto;
	padding: 18mm 16mm;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
	font-size: 11pt;
	line-height: 1.45;
}

.document-page h1,
.doc-h1 {
	font-size: 17pt;
	margin: 0 0 0.25rem;
	color: #1a1a1a;
	font-weight: bold;
}

.document-page h2,
.doc-h2 {
	font-size: 12pt;
	margin: 1.1rem 0 0.4rem;
	color: #1a1a1a;
	font-weight: bold;
}

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

table.doc-layout > tr > td,
table.doc-layout > tbody > tr > td {
	vertical-align: top;
	padding: 0;
}

.doc-right {
	text-align: right;
}

.doc-center {
	text-align: center;
}

.doc-half {
	width: 50%;
}

table.doc-parties {
	width: 100%;
	border-collapse: separate;
	border-spacing: 8px 0;
	margin: 1rem 0;
}

table.doc-parties > tr > td,
table.doc-parties > tbody > tr > td {
	width: 50%;
	border: 1px solid #444;
	padding: 0.6rem 0.8rem;
	vertical-align: top;
}

.document-party-label {
	font-size: 8.5pt;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #555;
	margin-bottom: 0.25rem;
}

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

table.doc-table th,
table.doc-table td {
	border: 1px solid #444;
	padding: 0.3rem 0.45rem;
	vertical-align: top;
	color: #1a1a1a;
}

table.doc-table th {
	background: #f0f0f0;
	text-align: left;
	font-weight: 600;
}

table.document-totals {
	border-collapse: collapse;
}

table.document-totals td {
	padding: 0.15rem 0.45rem;
	color: #1a1a1a;
}

table.document-totals tr.doc-grand td {
	border-top: 2px solid #1a1a1a;
	font-weight: bold;
	font-size: 12pt;
}

.doc-totals-spacer {
	width: 55%;
}

.document-footnote {
	margin-top: 1.25rem;
	font-size: 9pt;
	color: #444;
}

.doc-qr-cell {
	width: 30mm;
	padding-right: 4mm;
}

.doc-qr-cell svg,
.doc-qr-cell img {
	width: 26mm;
	height: 26mm;
}

table.doc-signatures {
	width: 100%;
	border-collapse: collapse;
	margin-top: 3rem;
}

table.doc-signatures td {
	width: 50%;
	text-align: center;
	padding: 0 2rem;
}

.document-signature-line {
	border-top: 1px solid #1a1a1a;
	margin-top: 2.6rem;
	padding-top: 0.3rem;
	font-size: 9.5pt;
}

.document-terms p {
	margin: 0 0 0.5rem;
	text-align: justify;
}

.doc-mt {
	margin-top: 1rem;
}

.doc-mb {
	margin-bottom: 1rem;
}

@media print {
	body {
		background: #fff !important;
	}

	.document-toolbar {
		display: none !important;
	}

	.document-page {
		width: auto;
		min-height: 0;
		margin: 0;
		padding: 0;
		box-shadow: none;
	}
}

@page {
	size: A4;
	margin: 16mm 14mm;
}

.doc-note-tight {
	margin-top: 0;
}
