table {
	font-size: var(--theme--font-size--small);
	color: var(--theme--color--dark);
	width: 100%;
}

table thead {
	background: var(--theme--color--primary-75);
	color: rgba(255,255,255, 1);
}

table tbody tr:hover td {
	background: var(--theme--color--primary-20);
}

table th,
table td {
	padding: 0.75em 1.5em;
	border: 1px solid rgba(0, 47, 100, 0.2);
}
	table th:first-child,
	table td:first-child {
		border-left: 0;
	}
	table th:last-child,
	table td:last-child {
		border-right: 0;
	}
	table tr:last-child td {
		border-bottom: 0;
	}

@media (max-width: 767.98px) {
	.responsive-table-container {
		overflow: auto;
	}
	
	.responsive-table-container table {
		min-width: 720px;
	}
}
