.table-scroll {
	max-height: 70vh;
	width: max-content;
	max-width: 100%;
	overflow: auto;
	border: 1px solid #ccc;
}

.sticky-table {
	border-collapse: separate;
	border-spacing: 0;
}

.sticky-table thead th {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 10;

	&:first-child {
		left: 0;
		z-index: 15;
	}
}

.sticky-table tbody td:first-child {
	position: sticky;
	left: 0;
	background: #fff;
	z-index: 5;
}

.sticky-table tbody td.meta-col + td {
	position: sticky;
	left: 0;
	background: #fff;
	z-index: 5;
}

@media (max-width: 1024px) {
	.table-scroll {
		max-height: 50vh;
	}
}
