body {
    font-family: monospace;
    background-color: #2e3440;
    color: #d8dee9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#terminal-container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #4c566a;
}

.tab-button {
    background-color: #3b4252;
    color: #d8dee9;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    outline: none;
}

.tab-button.active {
    background-color: #434c5e;
}

.add-tty {
    margin-left: auto;
}

.terminal {
    width: 100%;
    height: calc(100% - 40px);
    border: 1px solid #4c566a;
    overflow-y: scroll;
    padding: 10px;
    box-sizing: border-box;
    display: none;
}

.terminal.active {
    display: block;
}

.command-line {
    display: flex;
}

.prompt {
    user-select: none;
}

input {
    background-color: transparent;
    color: inherit;
    border: none;
    outline: none;
    width: 100%;
    font-size: inherit;
}
