* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #000000;
    color: #00ff55;

    font-family:
        "JetBrains Mono",
        "IBM Plex Mono",
        "Cascadia Mono",
        "Consolas",
        monospace;

    font-size: 16px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

#terminal {
    width: 100%;
    max-width: 1200px;
    border: 2px solid #00aa33;
    padding: 25px;
    background: #000000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}

.status {
    font-size: 18px;
}

hr {
    border: none;
    border-top: 1px solid #005500;
    margin: 25px 0;
}

section {
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

input {
    width: 100%;
    background: #000000;
    color: #00ff55;
    border: 1px solid #008822;
    padding: 10px;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    margin-bottom: 15px;
}

input:focus {
    border-color: #00ff55;
}

button {
    background: #000000;
    color: #00ff55;
    border: 1px solid #00aa33;
    padding: 10px 18px;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

button:hover {
    background: #002200;
}

button:active {
    background: #004400;
}

pre {
    white-space: pre-wrap;
    word-break: break-word;
    font-family: inherit;
}

#terminalOutput {
    border: 1px solid #004400;
    padding: 15px;
    min-height: 320px;
    max-height: 320px;
    overflow-y: auto;
}

#currentTool,
#elapsed,
#status {
    font-weight: bold;
}