/* Basic setup for the whole page */
body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'VT323', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-size: 20px;
}

/* The main container for the terminal */
.terminal-window {
    width: 80vw;
    height: 85vh;
    border: 3px solid #ff0000;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* The red title bar at the top */
.title-bar {
    background-color: #ff0000;
    color: #000000;
    padding: 4px 8px;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 1px 1px #333;
}

.window-controls span {
    margin-left: 10px;
    cursor: pointer;
}

/* The main text output area */
#terminal-output {
    flex-grow: 1;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-family: 'VT323', monospace;
    font-size: 20px;
    padding: 10px;
    resize: none;
    outline: none;
}

/* Styling the scrollbar */
#terminal-output::-webkit-scrollbar {
    width: 12px;
}
#terminal-output::-webkit-scrollbar-track {
    background: #333;
    border-left: 2px solid #ff0000;
}
#terminal-output::-webkit-scrollbar-thumb {
    background: #888;
}

/* The bottom input area */
.input-area {
    display: flex;
    align-items: center;
    border-top: 3px solid #ff0000;
    padding: 5px;
}

.prompt {
    color: #ff0000;
    margin-right: 8px;
    font-weight: bold;
}

/* The actual text input field */
#command-input {
    flex-grow: 1;
    background-color: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'VT323', monospace;
    font-size: 20px;
}