html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #000000;
    color: #ffd400;
    font-family: "Lucida Console", "Consolas", monospace;
    font-size: 16px;
    font-weight: ;
    text-transform: uppercase;
}

#app {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #000000;
}

#header {
    height: 32px;
    line-height: 32px;
    padding: 0 8px;
    background: #000000;
    color: #ffffff;
    border-bottom: 1px solid #ffd400;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap;
}

#screen {
    flex: 1;
    padding: 8px;
    overflow: hidden;
    background: #000000;
    color: #ffd400;
}

#footer {
    background: #000000;
    border-top: 1px solid #ffd400;
    padding: 4px 8px 6px 8px;
}

#shortcuts {
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 4px;
    white-space: nowrap;
}

#command-bar {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ffd400;
    font-weight: ;
    white-space: nowrap;
}

#commandInput {
    flex: 1;
    background: #000000;
    color: #ffffff;
    border: none;
    border-bottom: 1px solid #ffd400;
    outline: none;
    font-family: "Lucida Console", "Consolas", monospace;
    font-size: 16px;
    font-weight: ;
    text-transform: uppercase;
}

h2 {
    margin: 0 0 14px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

p {
    margin: 4px 0;
}

pre {
    margin: 0;
}

.login-box {
    width: 430px;
    margin: 40px auto;
    border: 1px solid #ffd400;
    padding: 18px;
    background: #000000;
    color: #ffd400;
}

.login-box label {
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
    color: #ffffff;
}

.terminal-input {
    width: 100%;
    box-sizing: border-box;
    padding: 7px;
    background: #000000;
    color: #ffffff;
    border: 1px solid #ffd400;
    font-family: "Lucida Console", "Consolas", monospace;
    font-size: 16px;
    font-weight: ;
    text-transform: uppercase;
}

.terminal-button {
    margin-top: 16px;
    padding: 7px 14px;
    background: #000000;
    color: #ffd400;
    border: 1px solid #ffd400;
    font-family: "Lucida Console", "Consolas", monospace;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.terminal-button:hover {
    background: #ffd400;
    color: #000000;
}

.error {
    color: #ff5555;
    font-weight: bold;
}

.terminal-table {
    font-family: "Lucida Console", "Consolas", monospace;
    background: #000000;
    color: #ffd400;
    border: none;
    padding: 0;
    white-space: pre;
    line-height: 1.25;
    font-size: 16px;
    font-weight: ;
    text-transform: uppercase;
}

.screen-title {
    text-align: center;
    color: #ffd400;
    font-weight: bold;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

input,
textarea,
button {
    text-transform: uppercase;
}
