* {
	box-sizing: border-box;
}
html {
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
}
body {
	height: 100%;
	margin: 0;
	padding: 20px;
	display: grid;
	grid-template-columns: 250px 250px 1fr;
	gap: 20px;
	background-color: #e3e0e8;
}
h2 {
	color: #36374b;
	font-size: 20px;
	margin-block: 0;
}
button {
	cursor: pointer;
}
textarea {
	resize: none;
	/*height: 100%;*/
	border: none;
	font-family: Arial, Helvetica, sans-serif;
	padding: 10px;
	background-color: #fff;
}
.eingabe {
	display: grid;
	grid-template-rows: min-content min-content 1fr;
	gap: 10px;
}
.ausgabe {
	display: grid;
	grid-template-rows: min-content min-content 1fr min-content;
	gap: 10px;
	.statistics {
		display: grid;
		grid-template-columns: 1fr 1fr;
		font-size: 14px;
		>span {
			text-align: right;
		}
	}
}
#dataviz {
	width: 100%;
	background-color: #e3e0e8;
}
.modal {
	opacity: 0;
	display: flex;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	&.active {
		opacity: 1;
		visibility: visible;
		transition: opacity 0.3s ease, visibility 0s linear;
	}
	.modal-content {
		background-color: white;
		padding: 20px;
		border-radius: 5px;
		box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
		max-width: 80%;
		max-height: 80%;
		overflow: auto;
	}
}