.table-container {
	box-sizing: border-box;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 2rem;
	margin-bottom: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(229, 57, 53, 0.22);
	background-color: rgba(22, 29, 55, 0.55);
}

.table-container table {
	width: 100%;
	min-width: min(100%, 520px);
	border-collapse: separate;
	border-spacing: 0;
	table-layout: auto;
	font-family: Montserrat, Inter, sans-serif;
	font-size: 0.92rem;
	line-height: 1.45;
	color: #e8e8e8;
	background-color: transparent;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
    border: none;
}

.table-container thead th {
	padding: 1rem 1.1rem;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #ffffff;
	background-color: #e53935;
	border: none;
	border-bottom: none;
	vertical-align: middle;
	white-space: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.table-container thead th:first-child {
	border-top-left-radius: 11px;
}

.table-container thead th:last-child {
	border-top-right-radius: 11px;
}

.table-container tbody td,
.table-container tbody th {
	padding: 1rem 1.1rem;
	text-align: center;
	vertical-align: middle;
	border: none;
	border-left: none;
	border-right: none;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.92rem;
	font-weight: 400;
	color: #d1d1d1;
	white-space: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.table-container tbody tr:nth-child(odd) td,
.table-container tbody tr:nth-child(odd) th {
	background-color: rgba(255, 255, 255, 0.05);
}

.table-container tbody tr:nth-child(even) td,
.table-container tbody tr:nth-child(even) th {
	background-color: rgba(255, 255, 255, 0.02);
}

.table-container tbody tr:hover td,
.table-container tbody tr:hover th {
	background-color: rgba(255, 255, 255, 0.1);
}

.table-container tbody tr:last-child td:first-child,
.table-container tbody tr:last-child th:first-child {
	border-bottom-left-radius: 11px;
}

.table-container tbody tr:last-child td:last-child,
.table-container tbody tr:last-child th:last-child {
	border-bottom-right-radius: 11px;
}

@media (max-width: 640px) {
	.table-container table {
		min-width: 0;
	}
}

.table-container tbody td b,
.table-container tbody td strong,
.table-container tbody th b,
.table-container tbody th strong {
	color: #ffffff;
	font-weight: 700;
}

.table-container__clip {
	position: relative;
}

@media (max-width: 640px) {
	.table-container--collapsible .table-container__clip {
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	.table-container--collapsible:not(.table-container--collapsible-expanded) .table-container__clip {
		max-height: 240px;
	}

	.table-container--collapsible:not(.table-container--collapsible-expanded) .table-container__clip::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 56px;
		pointer-events: none;
		background: linear-gradient(
			to bottom,
			rgba(22, 29, 55, 0),
			rgba(22, 29, 55, 0.92)
		);
	}

	.table-container--collapsible-expanded .table-container__clip {
		max-height: none;
	}

	.table-container--collapsible-expanded .table-container__clip::after {
		display: none;
	}

	.table-container__toggle {
		display: block;
		width: 100%;
		box-sizing: border-box;
		margin: 0;
		padding: 0.75rem 1rem;
		border: none;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 0 0 11px 11px;
		background: rgba(255, 255, 255, 0.08);
		color: #ffffff;
		font-family: Montserrat, Inter, sans-serif;
		font-size: 0.88rem;
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.table-container__toggle:hover,
	.table-container__toggle:focus-visible {
		background: rgba(255, 255, 255, 0.12);
	}

	.table-container__toggle:focus-visible {
		outline: 2px solid rgba(229, 57, 53, 0.65);
		outline-offset: -2px;
	}
}