/* Override some default styles in bootstrap and UMassD styles. */
.section .table {
	--bs-table-color: transparent;
	color: var(--bs-body-color);
	border-collapse: collapse;
}

.section .table tr:nth-child(2n+1),
.section .table tr:nth-child(2n),
.section .table tr,
.section .table tr:hover,
.section .table td,
.section .table td:hover {
	background-color: transparent;
	--bs-table-accent-bg: transparent;
	color: var(--bs-body-color);
	border-color: transparent;
}

.section .table thead {
	background-color: var(--bs-umassdblue);
}

.section .table thead th {
	color: #fff;
}

.section .table tbody:nth-child(2n) {
	background-color: var(--bs-light-bg-subtle);
	border-color: var(--bs-light-bg-subtle);
}

.section .table tbody:nth-child(2n+1) {
	background-color: var(--bs-secondary-bg-subtle);
	border-color: var(--bs-secondary-bg-subtle);
}

.section .table tbody:hover {
	background-color: var(--bs-metroblue);
}
