table{
	width: 100%;
}
tr {
	border-top: 1px solid var(--bs-tertiary-color);
	border-bottom: 1px solid var(--bs-tertiary-color);
}

/* table headers only for screenreader */
thead tr {
	position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
td {
	padding: 5px;
}
td:first-child {
	font-weight: bold;
}

/* display table cells beneath each other on small screens */
@media (max-width: 768px) {
	td {
		display: block;
		padding: 0 5px;
	}
	td:first-child {
		padding-top: 5px;
	}
	td:last-child {
		padding-bottom: 5px;
	}
}
