﻿table {
	width: 100%;
	font-size: 1rem;
	margin-top: 1.25rem;
	margin-bottom: 2rem;
	border: 1px solid var(--co2);
	border-bottom: 2px solid var(--co2);
	border-collapse: collapse;
	caption-side: top;
}

caption {
	width: 50%;
	margin: auto;
	padding: 0.25rem;
	font-size: 1.25rem;
	background-color: var(--co1d);
	color: snow;
	text-align: center;
	line-height: 1.4;
}

tr {
	font-size: 0.875rem;
	vertical-align: top;
	line-height: 1.4;
}

th {
	border-right: 1px solid var(--co1);
	color: snow;
	background-color: var(--co1d);
	font-size: 1.125rem;
	text-align: center;
	padding: 0.5rem;
}

td {
	border-right: 1px solid var(--co2);
	text-align: left;
	padding: 0.625rem;
}

td:last-child,
th:last-child {
	border-right: none;
	text-align: center;
}

tr:nth-child(odd) {
	background-color: rgba(22, 23, 25, 0.05);
}

tr:nth-child(even) {
	background-color: rgba(22, 23, 25, 0.1);
}

.scrollable {
	overflow:auto;
	width:auto;
	height:auto;
}

ul {
	text-align: left;
	list-style-type: square;
	margin-left: -1em;
	line-height: 1.4;
}