html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#terminal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0059ff;
    color: #fff;
    display: flex;
    flex-direction: column;
}

#terminal-input-container {
    display: flex;
    align-items: center;
    padding: 10px;
    font-family: monospace;
}

#terminal-prompt {
    margin-right: 5px;
}

#terminal-output {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
}

#terminal-input {
    border: none;
    background: transparent;
    color: #fff;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    outline: none;
    width: calc(100% - 30px); /* Ajuste para que el input se expanda correctamente */
}
