select {
    height: 24px;
}

#divCodeWrapper {
    max-height: 800px;
    width: 1200px;
    overflow: hidden;
    border: 1px solid #a5a5a5;
    position: relative;
}

#preCode {
    height: 100%;
    width: calc(100% - 50px);
    position: absolute;
    top: 0;
    left: 50px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: #1b1b1b;
    border: none;
}

#preCode code {
    padding: 15px;
    height: calc(100% - 30px);
    width: calc(100% - 30px);
    overflow-y: scroll;
    overflow-x: auto;
}

textarea {
    position: absolute;
    top: 0;
    left: 50px;
    height: calc(100% - 30px);
    width: calc(100% - 80px);
    padding: 15px;
    z-index: 2;
    overflow-x: auto;
    overflow-y: auto;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0);
    caret-color: white;
    border: none;
    outline: none;
    border-left: 1px solid #383838;
}

#lineNumbers {
    position: absolute;
    text-align: right;
    top: 0;
    left: 0;
    height: calc(100% - 50px);
    overflow: hidden;
}
