/* Styles for DOR web apps that display tables. This file should be included AFTER dorstandard.css. */
.table-responsive {
	/* Don't go all the way to edges of page. */
	width: 98%;
}

.table td {
	color: #53565A; /* Dark Gray */
}

thead, thead a, thead a:hover {
	color: #FFFFFF; /* White */
	background-color: #003865; /* Minnesota Blue*/
}

.page-link {
	/* Change colors for sortable tables pagination text. */
	color: #003865; /* Minnesota Blue*/
}

.page-item.active .page-link, .page-item.active .page-link:active,
	.page-item.active .page-link:hover, .page-item.active .page-link:focus,
	div.dataTables_wrapper div.dataTables_paginate ul.pagination .page-item.active .page-link:focus
	{
	/* Active pagination button. */
	background-color: #003865; /* Minnesota Blue*/
	border-color: #003865; /* Minnesota Blue*/
}

.table-bordered td, .table-bordered th {
	/* Table cell borders */
	border: 1px solid #97999B; /* Gray */
}

.table-hover tbody tr:hover {
	/* Background color on hovering over table row */
	background-color: #F5F5F2;
}

td .form-check-input.noVisibleLabel {
	/* Remove usual positioning to left of label. */
	margin-left: 0;
}

.table .th-lg {
    min-width: 9rem
}

.table .th-sm {
    min-width: 6rem
}

