.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;
}

.dialogTitle {
	font-weight: bold;
	font-size: 16px;
	margin-top: 30px;
}

.dialogSubDesc {
	margin-block-end: 0.5em;
	flex: 1;
}

.dialogList {
	margin-left: 1.2em;
}

.dialogNote {
	background-color: var(--gray-tertiary);
	padding: 0.5em;
	margin: 1em 0em;
	display: flex;
	align-items: center;
	border-left: 2px solid var(--app-primary-color);
}

.dialogNoteIcon {
	margin: 0 6px 0 0;
}

.dialogHighlight {
	background-color: var(--gray-tertiary);
	padding: 0 5px;
	font-weight: 500;
	font-size: 0.875rem;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.dialogLink {
	text-decoration: underline;
	cursor: pointer;
	border: none;
	background-color: var(--gray-tertiary);
	padding: 0 5px;
	font-weight: 500;
	font-size: 0.875rem;
	border-radius: 3px;
	font-family: var(--app-font-family);
	color: inherit;
	width: fit-content;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.dialogLink:hover {
	color: var(--gray-primary);
}

.dialogImageContainer {
	font-size: 12px;
	font-style: italic;
	margin: 15px 0px;
	display: flex;
	justify-content: center;
	line-height: normal;
	gap: 15px;
	flex-wrap: wrap;
	align-items: baseline;

	& div {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	& img {
		width: 320px;
	}
}

/* Hilfe */
.toolContainer {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 16px;
	margin: 1rem 0;
}

.toolSpan {
	padding: 8px;
	display: flex;
	align-items: center;
	gap: 5px;
}

/* 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;
		}
	}
}

.image-flexbox {
	margin: 1rem 0;

	& .item {
		display: flex;
		flex-direction: row;
		align-items: center;

		& .text {
			flex: 1;
			min-width: 250px;
		}

		& .image {
			width: 280px;
			max-width: 100%;
			height: auto;
			flex-shrink: 0;
		}

		@media (max-width: 800px) {
			& {
				flex-direction: column;
			}

			& .text {
				min-width: auto;
				align-self: flex-start;
			}
		}
	}
}
