<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* ####################### */
/* ### MEDIA PRINT CSS ### */
/* ####################### */

/* ################## */
/* ### DATA TABLE ### */
/* ################## */
table.table-data-print{
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	color: #111111;
	font-size: 12px;
	border: 1px solid #cccccc; border-collapse: collapse; border-spacing: 0px;
}
table.table-data-print tbody tr td{
	padding: 3px 2px;
	border: 1px solid #cccccc;
}
table.table-data-print thead th,
table.table-data-print tfoot th{
	border: 1px solid #cccccc;
	padding: 5px 2px;
	text-align: center;
	font-weight: bold;
}

/* ######################### */
/* ### OVERWRITE LIBRARY ### */
/* ######################### */
@media print{
	body{ background-color: #ffffff; }
	.feedback-btn,
	.toast{
		display: none !important;
	}
}

/* PREFERENCE FOR PRINT */
@page{ 
	size: 210mm 297mm; /* A4: 210mm 297mm */
	margin: 2mm;
}
</pre></body></html>