html {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	line-height: 1.3;
}
body {
	margin-left: 0px;
}

.bold {
	font-weight: bold;
}
td {
	vertical-align: top;
}
.red {
	color: red;
}
.feature {
	font-weight: bold;
}
.text {
	max-width: 60rem;
	text-align: justify;
	margin-right: auto;
	grid-area: main;
	justify-self: start;
}
.toc {
	max-width:20rem;
	min-width:10rem;
	grid-area: toc;
}
.grid-container {
	display: grid;
	max-width: 90rem;
	grid-template-areas:
	  'toc main';
	gap: 10px;
 }
 h2 {
	margin-top: 3.5rem;
	border-bottom: 1px solid lightgrey;
 }
td {
	padding-right: 0px;
	padding-left: 0px;
}
table#labvalues td:nth-child(2),td:nth-child(3)  {
	padding-left: 2rem;
	text-align: right;
}

.button {
	display:table-cell;
	border-radius: 0.8rem;
	text-align: center;
	border: 0.3rem solid #EEEEEE; 
	background-color:#6c757d;
	width: 8rem;
	vertical-align: middle;
}

.button-style {
	color: white;
	text-decoration: none;
	cursor: pointer;
	border-radius: 0.4rem;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
}

.zebra-table {
	max-width: 80rem;
	border-collapse: collapse;
	border-radius: 5px;
	padding: 5px;
	overflow: hidden;
}

.zebra-table tr:nth-child(even) {
	background-color: #e9eff5;
}

.zebra-table tr:nth-child(odd) {
	background-color: #d7dbde;
}

.zebra-table td {
	padding: 9px;
}
.row {
	display: flex;
	align-items: center; 
	justify-content: space-between;
}
