html {
    height: 100%;
}

button, input {
    color: #E0E0E0;
    background-color: #101010;
    caret-color: #E0E0E0;
    border: 1px solid #E0E0E0;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: table;
    color: #E0E0E0;
    background-color: #101010;
    font-family: sans-serif;
    font-size: 14px;
}

#left {
    display: table-cell;
}

#player {
    width: 100%;
    height: 100%;
}

#vline {
    display: table-cell;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    cursor: col-resize;
    width: 1px;
}

#right {
    display: table-cell;
    width: 320px;
    max-width: 320px;
    min-width: 260px;
    padding: 11px;
    text-align: center;
    vertical-align: top;
}


#welcome {
    display: table;
    width: calc(100% + 2px);
    height: 24px;
    margin-bottom: 20px;
}

#welcome > div {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: left;
    caret-color: #E0E0E0;
}

#welcome > button {
    display: table-cell;
    margin-left: 5px;
    height: 24px;
}

#log {
    width: calc(100% - 10px);
    height: calc(100% - 88px);
    border: 1px solid #E0E0E0;
    padding: 5px;
    margin-bottom: 20px;
    text-align: left;
    overflow-y: auto;
}

#log > div
{
    word-wrap: break-word;
    margin-bottom: 1ex;
}

#input {
    display: table;
    width: calc(100% + 2px);
    height: 24px;
}

#input > input[type=text] {
    display: table-cell;
    vertical-align: middle;
    width: calc(100% - 66px);
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    text-align: left;
}

#input > button {
    display: table-cell;
    margin-left: 10px;
    height: 100%;
    width: 50px;
}

