body {
	margin: 0;
	padding: 0;
	background-color: #424549;
	/* height: 100vh; */
	display: flex;
	flex-direction: column;
	justify-content: flex-end;

}


#title {
	color: rgb(206, 206, 206);
	text-shadow: 6px 6px 8px rgb(50, 50, 50);
	font-family: 'Trebuchet MS', monospace;
	font-size: 50px;
}

#header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 5vh;
}

#info {
	display: flex;
	align-items: start;
	justify-content: center;
	gap: 5vh;
	margin-top: 5vh;
}



#header img {
	width: 90px;
}


#status {
	display: flex;
	flex-direction: row;
	align-items: center;
	align-self: center;

	border-radius: 15px;
	border: 2px solid #7e7e7e;
	padding: 10px;
	background-color: #3a3b3e;

	margin-bottom: 5vh;
	color: rgb(200, 200, 200);
	text-shadow: 6px 6px 8px rgb(50, 50, 50);
	font-family: 'Trebuchet MS', monospace;
	font-size: 20px;
	gap: 10px;
}

#status-dot {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	box-shadow: 6px 6px 8px rgb(50, 50, 50);
}

#status-dot.connected {
	background-color: #7cff7c;
}

#status-dot.disconnected {
	background-color: #e04e4e;
}

#terminal {
	margin: 0 10% 0 10%;
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 80vh;
	border: 2px solid #7e7e7e;
	box-shadow: 4px 4px 8px rgb(50, 50, 50);
}

#input,
#output {
	color: #0dda47;
	font-family: 'Consolas', monospace;
	background-color: #202123;
	font-size: 18px;
	padding: 20px;
	/* background-color: rgb(66, 69, 73); */
}

#user,
#input {
	color: #c8c8c8;
	font-family: 'Consolas', monospace;
	font-size: 18px;
}

#output {
	overflow-y: auto;
	flex-grow: 1;
	scrollbar-width: none;
	white-space: pre-wrap;
}

#input {
	cursor: text;
	border: none;
	border-top: 2px solid #515151;
	outline: none;
	box-sizing: border-box;

}

.command {
	color: #dd57ff;
}


/* handling the button */
details {
	width: 30%;
	min-height: 40px;
	border-radius: 15px;

	background-color: rgb(46, 49, 54);
	box-shadow: 6px 6px 8px rgb(50, 50, 50);
	padding: 20px;

	overflow: visible;
	line-height: 200%;
	font-family: 'Trebuchet MS';
	color: rgb(200, 200, 200);
	font-size: 18px;
}

summary {
	display: flex;
	align-items: center;
	list-style: none;
	font-size: 30px;
}

details>summary span.icon {
	transition: all 0.3s;
	margin-left: auto;
	font-size: 25px;

}

details[open] summary span.icon {
	transform: rotate(90deg);
}


#command-examples {
	border-radius: 15px;
	margin-top: 25px;
	background-color: rgb(29, 31, 35);
	padding: 15px;
	/* font-size: 11px; */
	overflow-x: auto;
	/* white-space: pre-wrap; */
	word-break: break-word;
	/* text-indent: 0; */
	overflow-x: hidden
}
