/* Estilo para mixq.dev */

body {
    background-color: #000;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Terminal ocupa mitad superior */
.terminal {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 👈 clave */
    padding-bottom: 10px;
}


/* Línea input */
.promptLine {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

/* ">" */
.CMDprompt {
    font-family: monospace;
    font-size: 18px; /* 👈 igualado */
    color: #00FF41;
    margin: 0;
    margin-right: 10px;
}

/* Input */
.cmdInput {
    flex: 1;
    background-color: #000;
    border: none;
    outline: none;
    font-family: monospace;
    font-size: 18px;
    color: #00FF41;
}

/* Texto output */
.lineBot {
    margin-bottom: 5px;
    font-size: 18px; /* 👈 igualado */
}

.outputCmd {
    max-height: 80%;
    overflow-y: scroll;   /* no auto */
    padding: 0 20px;
    font-family: monospace;
    font-size: 18px;
    color: #00FF41;

    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* Edge viejo / IE */
}

.outputCmd::-webkit-scrollbar {
    width: 0;
    height: 0;
}