:root {
    --color-input: #11ff8b;
    --color-output: #008c46;
    --color-output-recent: #00d068;
    --color-error: #d50303;
}

body {
    margin: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#screen {
    background-color: black;
    position: absolute;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}

#Container,
#Container>div {
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

#logger {
    /* Needed so the inputs display the full width by default */
    display: flex;
    flex-direction: column;
}

#wrapper {
    display: table-cell;
    vertical-align: bottom;
    height: 100%;
}

.log {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.log p {
    color: var(--color-output);
    font-family: 'Source Code Pro', monospace;
    margin: 0;
    white-space: pre-wrap;
}

/* The most recent logs should be brighter than other logs */
.log:last-child > p:last-of-type {
    color: var(--color-output-recent);
}

.log a,
.log a:visited
{
    color: var(--color-input) !important;
}

.error {
    color: var(--color-error) !important;
}

.command {
    color: var(--color-input) !important;
}

#input {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
}

#input p {
    color: var(--color-input);
    font-family: 'Source Code Pro', monospace;
    padding-right: .4em;
    margin: 0;
}

#input input {
    flex: 1;
}

.command-input {
    background-color: black;
    border: 0;
    color: var(--color-input);
    font-family: 'Source Code Pro', monospace;
    font-size: 16px;
    outline: 0;
}

.nocaret {
    caret-color: transparent;
}

.input-label {
    display: none;
}

.inline-input-root {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

/* The final input prompt should be bright */
.inline-input-root:last-child .inline-input-prompt {
    color: var(--color-input) !important;
}

.inline-input {
    margin-left: 8px !important;
    flex: 1 !important;
}