.dialogContent {
	margin: 0;
	font-weight: 400;
	font-size: 1rem;
	line-height: 170%;
	border-top: 2px solid rgba(110, 110, 110, 0.3);
	background-color: var(--background-color);
	color: var(--app-tertiary-color);
	overflow-y: auto;
	flex: 1;
	min-height: 0;
	padding: 20px 24px;
}

/* Dialog Table */
.dialog-table-container {
	overflow-x: auto;
	margin: 16px 0;
}

.dialog-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	table-layout: fixed;

	& thead tr {
		background-color: var(--gray-tertiary);
	}

	& th {
		padding: 12px 8px;
		border-bottom: 1px solid var(--border-color);
		border-right: 1px solid var(--border-color);
		word-wrap: break-word;
		word-break: break-word;
		overflow-wrap: break-word;
		hyphens: auto;

		&:first-child {
			width: 20%;
		}

		&:not(:first-child) {
			width: 26.67%;
		}

		&:last-child {
			border-right: none;
		}
	}

	& tbody tr {
		border-bottom: 1px solid var(--border-color);

		&:last-child {
			border-bottom: none;
		}
	}

	& td {
		padding: 10px 8px;
		border-right: 1px solid var(--border-color);
		word-wrap: break-word;
		word-break: break-word;
		overflow-wrap: break-word;
		hyphens: auto;

		&:last-child {
			border-right: none;
		}

		&:first-child {
			font-weight: bold;
		}
	}
}
