/**
 * Shield Settlements Table — scoped to .settlements-table-wrap
 */
.shield-stt-root.settlements-table-wrap {
	--stt-radius: 14px;
	--stt-header: linear-gradient(to right, #004d90, #001529);
	--stt-row-border: 1px solid #eeeeee;
	--stt-text: #1a1a1a;
	--stt-muted: #777777;
	--stt-green: #1f8a4c;
	--stt-pill: linear-gradient(135deg, #c5a044 0%, #7a5c1d 100%);
	--stt-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
	width: 100%;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	border-radius: var(--stt-radius);
	overflow: hidden;
	box-shadow: var(--stt-shadow);
	font-family: Inter, system-ui, -apple-system, sans-serif;
}

.shield-stt-root.settlements-table-wrap *,
.shield-stt-root.settlements-table-wrap *::before,
.shield-stt-root.settlements-table-wrap *::after {
	box-sizing: border-box;
}

.shield-stt-root.settlements-table-wrap .settlements-table {
	width: 100%;
	border-collapse: collapse;
}

.shield-stt-root.settlements-table-wrap .settlements-table thead {
	background: var(--stt-header);
}

.shield-stt-root.settlements-table-wrap .settlements-table th {
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	text-align: left;
}

.shield-stt-root.settlements-table-wrap .settlements-table th:not(:first-child) {
	text-align: center;
}

.shield-stt-root.settlements-table-wrap .settlements-table td {
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
	border-bottom: var(--stt-row-border);
	vertical-align: middle;
}

.shield-stt-root.settlements-table-wrap .settlements-table tbody tr:last-child td {
	border-bottom: none;
}

.shield-stt-root.settlements-table-wrap .settlements-table tbody tr {
	background: #fff;
}

.shield-stt-root.settlements-table-wrap td.shield-stt-empty {
	text-align: center;
	color: var(--stt-muted);
	font-style: italic;
	padding: 2rem 1.5rem;
}

.shield-stt-root.settlements-table-wrap .settlements-table .col-claim {
	font-weight: 600;
	color: var(--stt-text);
}

.shield-stt-root.settlements-table-wrap .settlements-table .col-claim strong {
	font-weight: 700;
}

.shield-stt-root.settlements-table-wrap .settlements-table .cell-muted {
	text-align: center;
	color: var(--stt-muted);
}

.shield-stt-root.settlements-table-wrap .settlements-table .cell-strong {
	text-align: center;
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--stt-green);
}

.shield-stt-root.settlements-table-wrap .settlements-table .col-increase {
	text-align: center;
}

.shield-stt-root.settlements-table-wrap .pill-increase {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	background: var(--stt-pill);
	color: #fff;
	font-weight: 700;
	font-size: 0.9375rem;
	line-height: 1;
	white-space: nowrap;
}

.shield-stt-root.settlements-table-wrap .pill-increase__arrow {
	display: inline-flex;
	width: 1em;
	height: 1em;
	flex-shrink: 0;
}

.shield-stt-root.settlements-table-wrap .pill-increase__arrow svg {
	width: 100%;
	height: 100%;
	display: block;
}

@media (max-width: 720px) {
	.shield-stt-root.settlements-table-wrap {
		overflow-x: auto;
	}

	.shield-stt-root.settlements-table-wrap .settlements-table {
		min-width: 600px;
	}

	.shield-stt-root.settlements-table-wrap .settlements-table th,
	.shield-stt-root.settlements-table-wrap .settlements-table td {
		padding: 0.875rem 1rem;
		font-size: 0.875rem;
	}
}
