/** Version 2.0 of main.css for SudoHopeX Portfolio **/ 


body {
    background-color: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Ubuntu Mono', 'Consolas', monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
    overflow: hidden;
}

/* Light Theme Styles */
body.light-theme {
    background-color: #ffffff;
    color: #000000;
}

/* Terminal Overlay */
#terminal-overlay {
    width: 99%;
    height: 99%;
    background-color: #000000;
    border-radius: 9px;
    box-shadow: 0 0 14px rgb(196 123 44 / 68%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.light-theme #terminal-overlay {
    background-color: #f0f0f0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Main Output Area - THE SCROLLING CONTAINER */
#terminal-output {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;

    /* Keep white-space: pre-wrap for animation/output formatting */
    /* white-space: pre-wrap; */
    word-wrap: break-word;
    line-height: 1.1;
}

/* The Active Input Line Container: The parent of the prompt and input field */
#active-input-line {
    align-items: center;
    width: 100%;
    padding: 0 15px 15px 0; /* Reapply bottom padding to the input area */
    box-sizing: border-box;
    line-height: 0.8;
    margin-top: 11px;
}


/* The actual Input Field */
#terminal-input {
    background: transparent;
    border: none;
    outline: none;
    color: #d4d4d4;
    font-family: inherit;
    font-size: inherit;

    /* CRITICAL: Takes up the remaining horizontal space in the flex container */
    flex-grow: 1;

    padding: 0;
    margin: 0;
    caret-color: #00ff00;
    line-height: normal;
}

/* ... (Rest of the CSS styles like colors, ASCII art, and GUI link remain the same) ... */
.cli-prompt-user { color: #f92672; }
.cli-prompt-host { color: #66d9ef; }
.cli-warning { color: #fd971f; }
.cli-success { color: #a6e22e; }
.cli-error { color: #ff0000; }
.cli-data { color: #e6db74; }
.cli-link { color: #ae81ff; }

#asciiArt {
    white-space: pre-wrap;
    font-size: 10px;
    margin-bottom: 10px;
    color: #00ff00;
    padding: 0;
    margin-top: 0;
}

#gui-home-link {
    position: absolute;
    top: 5px;
    right: 26px;
    color: #a6e22e;
    text-decoration: none;
    font-size: 12px;
    z-index: 10;
}


