/* style.css */
body {
    background-color: #0c0c0c;
    color: #00FF41; /* Bright green */
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-shadow: 0 0 5px #00FF41;
}

.terminal {
    padding: 20px;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
    cursor: text;
}

#output {
    white-space: pre-wrap; /* Preserve whitespace and wrap lines */
    word-wrap: break-word;
}

.prompt-line {
    display: flex;
    align-items: center;
}

.prompt {
    margin-right: 8px;
}

#input {
    background: transparent;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    text-shadow: inherit;
    flex-grow: 1;
    padding: 0;
}

#input:focus {
    outline: none;
}

.cursor {
    display: inline-block;
    background-color: #00FF41;
    width: 10px;
    height: 1.2em;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { background-color: transparent }
    50% { background-color: #00FF41; }
}

/* Style for links that might be outputted */
a {
    color: #80c5ff;
    text-decoration: underline;
}

a:hover {
    color: #ffffff;
}