table tbody,
table thead th {
	border-right: 0;
	border-bottom: 0;
	border-spacing: 0;
}

table tbody tr {
	background-color: var(--white) !important;
}

table thead th,
table tbody tr,
table tbody tr:nth-child(even) {
	border-bottom: 1px solid var(--gray_border);
}

table tbody tr:last-child {
	border-bottom: none;
}

.subtable {
	margin: 0;
	border-left: 1px solid var(--gray_border);
}

.subtable > tbody {
	border: 0;
}

.parent-cell {
	padding: 0 !important;
	border: 0 !important;
}

.table-container {
	border-radius: 6px;
	border: 1px solid var(--gray_border);
	box-shadow: 0 2px 0 0 var(--gray_border);
	height: fit-content;
	margin-bottom: 10px;
}

.table-container table {
	margin-bottom: 0;
}

.table-container td {
	font-size: 14px;
}

.table-container th,
.table-container td {
	padding: 10px 10px 9px;
}

.table-container tbody {
	border: none;
}

.table-container tbody th {
	font-weight: 600;
	text-align: right;
}

.table-container thead { border: none; }

.table-container .table-with-header thead {
	border-top: 1px solid var(--gray_border);
}

.table-header {
	border-bottom: none;
	padding: 20px 30px;
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 600;
	background-color: white;
}

.collapsible-table .table-header {
	padding-right: 15px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: inherit;
}

.table-container thead th {
	font-size: 14px;
	font-weight: 600;
}

.collapsible-table .data-table-container {
	display: none;
}

.data-table-searchable {
	width: 400px;
}

.table-hover tbody tr:hover {
	background-color: var(--table_highlight) !important;
}