/*body {
    background-color: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#terminal {
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#output {
    flex-grow: 1;
    overflow-y: auto;
}

#input-line {
    display: flex;
}

#prompt {
    margin-right: 10px;
}

#command-input {
    flex-grow: 1;
    background-color: #000;
    color: #d4d4d4;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
}
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fira Code", monospace;
}

body {
    height: 100vh;
    background-color: #1e1e1e;

    /* Centraliza o terminal */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Caixa do terminal */
#terminal {
    width: 600px;
    height: 350px;

    background-color: #0c0c0c;
    color: #ffffff;

    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);

    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* Área de saída */
#output {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Linha de input */
#input-line {
    display: flex;
    align-items: center;
}

#prompt {
    margin-right: 8px;
    color: #ffffff;
}

/* Input estilo terminal */
#command-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    flex: 1;
    font-size: 14px;
}

/* Texto de dica */
span {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 6px;
}

/* Barra superior estilo macOS */
.terminal-header {
    height: 32px;
    background-color: #1f1f1f;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    display: flex;
    align-items: center;
    padding: 0 12px;
    margin: -15px -15px 10px -15px;
}

/* Grupo de botões */
.window-buttons {
    display: flex;
    gap: 8px;
}

/* Botões */
.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Cores macOS */
.btn.close {
    background-color: #ff5f56;
}

.btn.minimize {
    background-color: #ffbd2e;
}

.btn.maximize {
    background-color: #27c93f;
}

/* Título do terminal */
.terminal-title {
    color: #c7c7c7;
    font-size: 13px;
    margin-left: auto;
    margin-right: auto;
    pointer-events: none;
}
