body {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Roboto Mono', monospace; /* Fonte monoespaçada para simular terminal */
    color: #0F0; /* Verde vibrante para as letras */
    overflow: hidden; /* Para evitar barras de rolagem desnecessárias */
}

.terminal {
    background-color: #1a1a1a; /* Um cinza bem escuro para o fundo do terminal */
    border: 1px solid #333;
    width: 90%;
    max-width: 800px;
    height: 60vh;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5); /* Sutil brilho verde */
}

#output {
    flex-grow: 1;
    overflow-y: auto;
    white-space: pre-wrap; /* Para quebrar linhas longas */
    word-wrap: break-word; /* Para quebrar palavras longas */
    margin-bottom: 10px;
    line-height: 1.4;
}

.input-line {
    display: flex;
    align-items: baseline;
}

.prompt {
    color: #0F0;
    margin-right: 8px;
}

#input {
    background-color: transparent;
    border: none;
    color: #0F0;
    flex-grow: 1;
    outline: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 1em;
}

/* Scrollbar estilizado para combinar com o tema */
#output::-webkit-scrollbar {
    width: 8px;
}

#output::-webkit-scrollbar-track {
    background: #1a1a1a;
}

#output::-webkit-scrollbar-thumb {
    background: #005500;
    border-radius: 4px;
}

#output::-webkit-scrollbar-thumb:hover {
    background: #008800;
}