:root {
    --bg-color: #000000;
    --text-main: #fff;
    --text-dim: #6B7280;
    --user-color: #8ae234;
    --path-color: #79a7ec;
    --red: #bb0e0b;
    --light-yellow: #FFFFE0;
    --font-mono: 'JetBrains Mono', SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-mono);
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Forces the input to stay focused even if the user clicks around the page */
main {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}


#output {
    white-space: pre-wrap;
    word-wrap: break-word;
}

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

#prompt-prefix {
    white-space: pre;
    font-weight: semi-bold;
}

/* Styling for the prompt components */
.user-host {
    color: var(--user-color);
    font-weight: 600;

}

.path {
    color: var(--path-color);
    font-weight: bold;
}

.symbol {
    color: var(--text-main);
}

span {
    margin: 0px;
    padding: 0px;
}

input[type="text"] {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: inherit;
    font-size: inherit;
    outline: none;
    margin-bottom: 1px;
    margin-right: -1px;
    margin-left: -2px;
    caret-color: var(--text-main);
    width: 99%;
    /* Makes the blinking cursor match */
}

/* Subtle blinking cursor effect for empty inputs BUT NOT WORKING!!! */
input[type="text"]:focus::placeholder {
    color: transparent;
}