@page { /* https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@page/size */
  size: A4 portrait;
}

body {
  font-family: Verdana, sans-serif;
}

div.page {
	box-sizing     : border-box;
	width           :210mm;
	height          :297mm;
	page-break-after: always;
	border          : 1px solid black;
	margin          : auto;
	overflow        : hidden;
}

h1, h2, h3, h4, h5, h6 {
	text-align      : center;
	background-color: Grey;
	color           : white;
}

/* Table styling: */

table          {width:100%;}

table tr:hover {background-color: #D6EEEE;}

table tbody tr th {
	text-align: left;
}

table tbody tr td time {
	float: right;
}

table thead tr {
	text-align      : center;
	background-color: DarkGrey;
}