html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #ffffff;
	color: #111111;
	font-family: "Courier New", Courier, monospace;
}

.page,
#root {
	height: 100%;
}

.terminal-shell {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

.terminal-panel {
	width: min(980px, 100%);
	height: min(760px, 100%);
	border: 1px solid #d7d7d7;
	padding: 16px;
	box-sizing: border-box;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #ffffff;
}

.terminal-line {
	font-size: 14px;
	line-height: 1.4;
	word-break: break-word;
}

.muted {
	color: #666666;
}

.error {
	color: #b00020;
}

.chat-window .messages {
	flex: 1;
	overflow-y: auto;
	border: 1px solid #efefef;
	padding: 10px;
}

.compose {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.prompt {
	font-weight: 700;
	white-space: nowrap;
}

.timestamp {
	color: #666666;
}

.terminal-input {
	flex: 1;
	margin: 0;
	border-radius: 0;
	border: 1px solid #d7d7d7;
	background: #ffffff;
	color: #111111;
	font-family: inherit;
}

.terminal-input:focus {
	border-color: #111111;
}

.terminal-button {
	border-radius: 0;
	border: 1px solid #d7d7d7;
	background: #ffffff;
	padding: 0 10px;
	font-family: inherit;
	text-transform: lowercase;
}

.terminal-button:hover {
	border-color: #111111;
}
