html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background-color: #000000;
    color: #a8d8a8;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
}

.terminal {
    box-sizing: border-box;
    width: 90%;
    max-width: 900px;
    min-height: 500px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #6f8f6f;
    background-color: #050805;
    box-shadow: 0 0 0 6px #101410;
    display: flex;
    flex-direction: column;
    height: 600px;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #6f8f6f;
    color: #ffffff;
    font-weight: bold;
}

.terminal-output {
    margin-top: 24px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.terminal-output p {
    margin: 0 0 6px;
}

#terminal-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.terminal-input label {
    margin-right: 8px;
    color: #ffffff;
    font-weight: bold;
}

#command-input {
    flex: 1;
    min-width: 0;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    color: inherit;
    font: inherit;
    text-transform: uppercase;
}

/*The following CSS is used for the terminal divider*/

.system-status {
    margin-top: 20px;
    margin-bottom: 20px;
}

.system-status p {
    margin-bottom: 2px;
}

.system-status span {
    color: #ffffff;
}

.terminal-divider {
    margin: 20px 0;
    color: #6f8f6f;
    overflow: hidden;
    white-space: nowrap;
}

.terminal-output strong {
    color: #ffffff;
    font-weight: normal;
}

/* This controls system information and help tooltip */

.system-status {
    margin-top: 20px;
    margin-bottom: 20px;
}

.system-status p {
    margin-bottom: 2px;
}

.system-status span {
    color: #ffffff;
}

.terminal-divider {
    margin: 20px 0;
    color: #6f8f6f;
    overflow: hidden;
    white-space: nowrap;
}

.terminal-output strong {
    color: #ffffff;
    font-weight: normal;
}

.terminal-header small {
    display: block;
    margin-top: 4px;
    color: #6f8f6f;
    font-size: 11px;
    font-weight: normal;
}

.command {
    color: #d0b36a;
}

/* Timestamp effect */

.terminal-meta {
    text-align: right;
}

.terminal-meta div {
    margin-bottom: 4px;
}

.terminal-meta div:last-child {
    margin-bottom: 0;
}

#system-time {
    color: #a8d8a8;
    font-weight: normal;
}

.prompt {
    display: inline-block;
    margin-right: 8px;
}

c