#gameView {
	position: relative;
	white-space: pre-wrap;
	font-family: "JetBrains Mono", "IBM Plex Mono", "Cascadia Mono", monospace;
	font-size: 1em;
	line-height: 1;
}

#gameView * {
	user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

#game-dev-menu {
	position: relative;
	display: inline-block;
}

#game-menu-container {
}

.game-menu-content {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	display: none;
	background: #1a1410;
	padding: 5px;
	border: 1px solid #333;
	white-space: nowrap;
}

.game-menu-content button {
	display: block;
	width: 100%;
}

.sim-pause-btn,
.game-menu-btn {
	padding: 2px 4px;
	cursor: pointer;
}

/* messages */
.textContainer {
	position: absolute;
	background-color: #000;
	border: 1px solid #fff;
	font-family: monospace;
	font-size: 14px;
	text-align: left;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-sizing: border-box;
}

.textContainer > div {
	padding: 0 4px;
	line-height: 16px;
	word-wrap: break-word;
	flex-shrink: 0;
	color: inherit;
}
