#input-line {
    display: flex;
    align-items: center;
    width: 100%;
}

.prompt {
    margin-right: 0.5rem;
}

.command-line {
    display: flex;
    align-items: center;
    font-family: monospace;
    width: 100%;
    border: 1px solid var(--border);
    padding: 0.2rem 0.4rem;
    background: transparent;
    border-radius: 2px;
}

.command-line:focus-within {
    border-color: var(--accent);
    outline: none;
}

.prompt {
    white-space: nowrap;
    margin-right: 0.5ch;
}

#command {
    flex: 1;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    outline: none;
}

#command::placeholder {
    color: var(--muted);
    opacity: 0.2;
}
