.stv-table-wrapper {
	overflow-x: auto;
	margin: 1.5em 0;
}

.stv-table-toolbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	margin-bottom: 1em;
	flex-wrap: wrap;
}

.stv-global-search-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
}

.stv-global-search {
	font-weight: normal;
	padding: 5px 8px;
	font-size: 15px;
	box-sizing: border-box;
	border: 1px solid rgb(204,204,204);
	border-radius: 5px;
}

.stv-clear-filters {
	padding: 5px 10px;
	font-size: 13px;
	cursor: pointer;
	background: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.stv-clear-filters:hover {
	background: #ececec;
}

.stv-download-row {
	display: flex;
	justify-content: flex-end;
	margin: -0.5em 0 1em;
}

.stv-download-link {
	font-size: 13px;
	color: #2271b1;
	text-decoration: none;
}

.stv-download-link:hover {
	text-decoration: underline;
}

.stv-table {
	border-collapse: collapse;
	width: 100%;
}

.stv-table th,
.stv-table td {
	border-top: 1px solid rgb(204,204,204);
	padding: 8px 12px;
	text-align: left;
	font-size: 18px;
}

.stv-table thead tr:first-child th {
	background: #f5f5f5;
	cursor: pointer;
	user-select: none;
	position: relative;
	white-space: nowrap;
}

.stv-table thead tr:first-child th:hover {
	background: #ececec;
}

.stv-table thead tr:first-child th:not(.stv-sort-desc,.stv-sort-asc)::after {
	content: " \25B2";
	font-size: 11px;
	color: rgba(0,0,0,0);
}

.stv-table thead tr:first-child th:hover::after {
	content: " \25B2";
	font-size: 11px;
	color: black;
}

.stv-table thead tr:first-child th.stv-sort-asc::after {
	content: " \25B2";
	font-size: 11px;
}

.stv-table thead tr:first-child th.stv-sort-desc::after {
	content: " \25BC";
	font-size: 11px;
}

.stv-table .filter-row {
    background: #f5f5f5;
}

.stv-table .filter-row th {
	padding: 4px 6px 10px 6px;
	border-top: none;
}

.stv-column-filter {
	width: 100%;
	box-sizing: border-box;
	font-weight: normal;
	padding: 4px 6px;
	font-size: 15px;
	border: 1px solid rgb(204,204,204);
	/*border: none;*/
	background: white;
	border-radius: 5px;
}

/* alternating row background
.stv-table tbody tr:nth-child(even) {
	background: #fafafa;
} */

.stv-no-match-row td {
	color: #777;
	font-style: italic;
	padding: 16px;
}

/* coloring of gold/silver/bronze */
.stv-table td[data-sort="6"] {
	color: #eaaa24;
	font-weight: 600;
}
.stv-table td[data-sort="7"] {
	color:#aeabaa;
	font-weight: 600;
}
.stv-table td[data-sort="8"] {
	color: #9e7b34;
	font-weight: 600;
}
