body {
	font-family: "open_sans", monospace;
	background-color: #091921;
	color: white;
}

#gewichtseingaben {
	width: 100%;
}

.eingabe {
	display: inline-block;
	width: max-content;
	text-align: center;
	border-radius: 3px;
	box-sizing: border-box;
	border: none;
	box-shadow: 0px 0px 2px gray;
	padding: 5px;
	margin-bottom: 9px;
	margin-top: 0px;
	margin-left: 5px;
	margin-right: 5px;
	cursor: pointer;
}

#r {
	background-color: var(--rot);
	border: none;
}

#r:hover {
	box-shadow: none;
}

#l {
	background-color: var(--lila);
	border: none;
}

#l:hover {
	box-shadow: none;
}

.textzeile {
	width: 100%;
	text-align: center;
}

#rechnungen {
	margin: 5px;
	align-items: center;
}

#rechnung-rot {
	position: absolute;
	text-align: center;
	background-color: var(--rot);
	border-radius: 10px;
	width: 252px;
	padding: 8px;
	line-height: 130%;
}

#rechnung-lila {
	position: absolute;
	text-align: center;
	background-color: var(--lila);
	border-radius: 10px;
	width: 252px;
	padding: 8px;
	line-height: 130%;
}

.eingabefeld {
	display: inline-block;
}

.gewicht-eingabe {
	position: absolute;
	box-sizing: border-box;
	background: rgba(100, 100, 100, 0.85);
	color: white;
	resize: none;
	text-align: center;
	border-radius: 2px;
	border: none;
	font-size: 16px;
	cursor: default;
	padding: 3px;
}

#netz {
	height: 275px;
	margin-left: auto;
	margin-right: auto;
	width: 500px;
}

#container {
	display: flex;
	min-height: 360px;
	max-width: 70%;
}

#graph {
	width: 560px;
	padding: 0px;
	margin: 0px;
}

#rechter-container {
	flex: 1 0 200px;
	max-width: 382px;
}

.neuron {
	position: absolute;
	padding: 11px;
	border-radius: 18px;
	background-color: rgba(14, 158, 103, 0.1);
	border: 1px solid #0E9E67;
	box-sizing: border-box;
	color: white;
	width: 96px;
	height: 60px;
	font-size: 13px;
	text-align: center;
	padding-top: 22px;
	display: flex;
}

.neuron:hover {
	background-color: rgba(14, 158, 103, 0.2);
	box-shadow: 0px 0px 1px gray;
}

.neuron-beschriftung {
	float: left;
	min-width: 32px;
	font-size: 13px;
}


.neuron-wert {
	color: white;
	float: left;
	text-align: left;
	border: none;
	padding: 0px;
	font-size: 13px;
}

.slider {
	width: 100px;
}

.neuron-wert-edit {
	background: transparent;
	color: white;
	float: left;
	text-align: left;
	border: none;
	width: 3em;
	padding: 0px;
	margin-top: -0.5px;
	margin-left: 5px;
	font-size: 13px;
}

.neuron-wert-edit-container {
	margin-top: 0px;
}

.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	background-color: rgb(12, 16, 32);
	color: white;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	
	/* Position */
	position: absolute;
	z-index: 1;
	top: 100%;
	line-height: 130%;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}

#canvas {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
}

input[type="button"] {
	background: transparent;
	border: none;
	color: white;
	font-size: 1.4em;
	opacity: 0.7;
	cursor: pointer;
}

input[type="button"]:hover {
	opacity: 1;
}
