/* Fake Linux Terminal Styles */
.fake-terminal-container {
    background: #23272e;
    color: #e5e5e5;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    height: 500px;
    margin: 40px auto 32px auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    font-family: monospace;
    padding: 0 0 16px 0;
    display: flex;
    flex-direction: column;
}
.fake-terminal-header {
    background: #181a1b;
    color: #7fffd4;
    padding: 10px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
}
.fake-terminal-output {
    min-height: 120px;
    max-height: none;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px 20px 0 20px;
    font-size: 1em;
}
.fake-terminal-prompt {
    color: #7fffd4;
}
#fake-terminal-form {
    display: flex;
    align-items: center;
    padding: 12px 20px 0 20px;
    margin-top: auto;
}
.fake-terminal-input {
    background: transparent;
    border: none;
    color: #e5e5e5;
    font-family: monospace;
    font-size: 1em;
    outline: none;
    flex: 1;
}
.fake-terminal-input:focus {
    outline: none;
} 