#terminalOutput {
    background-color: #1e1e1e; /* Match terminal theme */
    color: #cfcfcf; /* Text color */
    font-family: monospace; /* Terminal-like font */
    padding: 10px;
    border-radius: 5px;
    overflow-y: auto; /* Enable vertical scrolling */
    height: 300px; /* Default height */
    transition: height 0.3s ease; /* Smooth height change during maximization */
}

.terminal-header {
    background-color: #333;
    padding: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px; /* Define header height */
}

.terminal {
    display: none;
    background-color: #1a1a1a;
    color: white;
    padding: 10px;
    border-radius: 5px;
    max-width: 90%;
    width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Courier New', Courier, monospace;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

textarea#terminalInput {
    resize: none;
    margin-top: 10px;
    width: 100%;
    height: 50px; /* Increase input size */
    border-radius: 5px;
    border: none;
    background: #1e1e1e;
    color: white;
    font-family: monospace;
}
