body {
	background-color: #121212;
	color: #E6E6E6;
	font-family: "Source Code Pro", serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	margin: 0;
}

.terminal {
	background-color: #1F1F1F;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	padding: 1rem;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
	overflow-y: auto;
	max-height: 80vh;
}

.terminal-header {
	display: flex;
	align-items: center;
	background: #2A2A2A;
	padding: 0.5rem 1rem;
	border-radius: 8px 8px 0 0;
	margin: -1rem -1rem 1rem -1rem;
}

.traffic-light {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 0.5rem;
}

.traffic-light.red {
	background-color: #ff5f57;
}

.traffic-light.yellow {
	background-color: #ffbd2e;
}

.traffic-light.green {
	background-color: #28ca41;
}

.output-line {
	margin: 0.3rem 0;
	line-height: 1.4;
}

.app-entry {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.icon {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	border-radius: 3px;
}

a {
	color: #61afef;;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.input-line {
	display: flex;
	align-items: center;
	margin-top: 0.5rem;
}

.prompt {
	margin-right: 0.5rem;
}

.terminal-input {
	background: transparent;
	border: none;
	outline: none;
	color: #E6E6E6;
	font-size: 1rem;
	width: 100%;
	font-family: inherit;
}

footer {
	margin-top: 1rem;
	color: #5c6370;
	font-size: 0.8rem;
	text-align: center;
}

pre {
	margin: 0.3rem 0;
	font-family: "Source Code Pro", monospace;
	color: #E6E6E6;
}

@media (max-width: 600px) {
	body {
		justify-content: flex-start;
		padding: 1rem;
		min-height: auto;
	}

	.terminal {
		width: calc(100% - 2rem);
		max-width: none;
		margin-top: 1rem;
	}
}