.terminal {
max-width: 800px;
margin: 50px auto;
background-color: #1a1a1a;
border-radius: 5px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
scroll-behavior:auto;
}
.command {
color: #FFFF00;
}
.command_result {
color: #78ff82;
}
pre {
margin: 0;
white-space: pre-wrap;
}
.input-container {
padding-top: 10px;
margin-top: 10px;
display: flex;
align-items: center;
}
.input-container .command {
color: #78ff82;
margin-right: 5px;
}
.input-container input {
background-color: transparent;
border: none;
outline: none;
color: #78ff82;
font-family: 'Courier New', monospace;
font-size: 16px;
width: 80%;
}