.sfm-filings-wrap {
	max-width: 100%;
	font-size: 15px;
	font-family: var( --sfm-font-family, inherit );
	color: var( --sfm-text-color, inherit );
}

.sfm-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 16px;
	margin-bottom: 16px;
}

.sfm-control {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sfm-control label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: inherit;
	opacity: 0.75;
}

.sfm-search-control input {
	min-width: 220px;
}

.sfm-clear-btn {
	cursor: pointer;
	align-self: end;
	font-family: inherit;
}

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

.sfm-table thead th {
	text-align: left;
	padding: 10px 12px;
	background: var( --sfm-header-bg, #f2f2f2 );
	border-bottom: 2px solid rgba( 0, 0, 0, 0.1 );
	cursor: pointer;
	user-select: none;
	white-space: nowrap;
}

.sfm-table thead th:first-child {
	border-top-left-radius: var( --sfm-radius, 4px );
}

.sfm-table thead th:last-child {
	border-top-right-radius: var( --sfm-radius, 4px );
}

.sfm-table thead th:hover {
	filter: brightness( 0.96 );
}

.sfm-table thead th.sfm-sorted-asc::after {
	content: " \25B2";
	color: var( --sfm-accent, #1d4e89 );
}

.sfm-table thead th.sfm-sorted-desc::after {
	content: " \25BC";
	color: var( --sfm-accent, #1d4e89 );
}

.sfm-table tbody td {
	padding: 8px 12px;
	border-bottom: 1px solid rgba( 0, 0, 0, 0.06 );
	vertical-align: middle;
}

.sfm-table tbody tr:hover {
	background: rgba( 0, 0, 0, 0.02 );
}

.sfm-table a {
	color: var( --sfm-accent, #1d4e89 );
}

.sfm-col-download,
.sfm-col-view {
	text-align: center;
	width: 60px;
}

.sfm-col-download a {
	text-decoration: none;
	font-size: 18px;
}

.sfm-group-row td {
	background: rgba( 29, 78, 137, 0.08 );
	font-weight: 700;
	padding: 10px 12px;
	border-bottom: 2px solid rgba( 0, 0, 0, 0.1 );
}

.sfm-no-results {
	padding: 16px;
	text-align: center;
	opacity: 0.7;
}

.sfm-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba( 0, 0, 0, 0.08 );
}

.sfm-page-info {
	font-size: 13px;
	opacity: 0.75;
}

.sfm-page-buttons {
	display: flex;
	align-items: center;
	gap: 6px;
}

.sfm-page-btn,
.sfm-page-num {
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
	color: inherit;
	line-height: 1.4;
}
.sfm-page-buttons button:after{
	display: none;
}

.sfm-page-btn:disabled {
	opacity: 0.4;
	cursor: default;
}

.sfm-page-btn:hover:not(:disabled),
.sfm-page-num:hover:not(.sfm-page-current) {
	background: rgba( 0, 0, 0, 0.04 );
}

.sfm-page-numbers {
	display: flex;
	align-items: center;
	gap: 4px;
}

.sfm-page-num.sfm-page-current {
	background: var( --sfm-accent, #1d4e89 );
	border-color: var( --sfm-accent, #1d4e89 );
	color: #fff;
}

.sfm-page-ellipsis {
	padding: 0 4px;
	opacity: 0.5;
}

@media ( max-width: 782px ) {
	.sfm-pagination {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
	.sfm-page-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media ( max-width: 782px ) {
	.sfm-controls {
		flex-direction: column;
		align-items: stretch;
	}
	.sfm-table {
		display: block;
		overflow-x: auto;
	}
}
