html {
    height: 100%;
}

body {
    font-family: "Ubuntu Sans Mono", monospace;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: #101010;
    color: white;
    font-size: 1.2em;
    height: calc(100% - 0em);
}

@font-face {
    font-family: 'Material Symbols Rounded';
    font-style: normal;
    src: url("assets/MaterialSymbolsRounded.woff2") format('woff2');
}

.mtr {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 17px;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}


textarea {
    padding: 0;
    border: 0;
    outline: 0;
    flex: 1;
    font: inherit;
    color: inherit;
    background-color: inherit;
}

.projlogo {
    background: -webkit-linear-gradient(45deg, #e0ff43, #f96eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    font-size: 10px;
    font-weight: bold;
    line-height: 10px;
}

.terminal {
    flex: 1;
    background: #070707;
    padding: .5em;
    display: flex;
    gap: 1em;
    flex-direction: column;
}

div#input_cont {
    height: fit-content;
    display: flex;
    flex-direction: row;
    gap: .5em;

    & #currently {
        color: #90ff90;
    }
}

.nav {
    display: flex;
    padding: 10px;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;

    .projLogo {
        justify-content: center;
        align-items: center;
        display: flex;

        img {
            height: 24px;
            width: 25px;
            object-fit: cover;
        }
    }
}

div#tab_buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 1;

    & .singular_tab_button {
        display: flex;
        width: 100px;
        justify-content: space-between;
        font-size: 14px;
        align-items: stretch;
        overflow: hidden;
        border-radius: 5px;
        cursor: grab;
        transition: .2s;
        border: 1px solid #515151;
        background: #2d2d2d;

        &:hover {
        box-shadow: 0 3px 10px #00000080;
    }

        & .process_name {
            padding: 5px 6px;
        }

        & .clbtn {
            cursor: pointer;
            font-size: 15px;
            padding: 5px;
            opacity: .5;
            display: flex;
            justify-content: center;
            align-items: center;

            &:hover {
                background-color: #1f1f1f;
                opacity: 1;
            }
        }
    }
}