
.TALS_TextAreaLineSplitter {
    max-height: 200px;
    border: 1px solid #bbb;
    border-radius: 4px;
    overflow-y: auto;
    padding: 2px 4px 2px 4px;
}

.TALS_TextAreaLineSplitter textarea {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    resize: none;
    height: 32px;
    outline: none;
    border: none;
}

.TALS_TextAreaLineSplitter .TALS_InputEntry {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 1.6rem;
    margin-top: 2px;
}

.TALS_TextAreaLineSplitter .TALS_InputEntry .TALS_String {
    display: grid;
    align-items: center;
    height: 100%;
    padding: 0 4px 0 4px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #9fcad7;
}

.TALS_TextAreaLineSplitter .TALS_InputEntry .TALS_RemoveButton {
    cursor: pointer;
    padding: 0 4px 0 4px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #9fcad7;
    height: 100%;
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.TALS_TextAreaLineSplitter .TALS_InputEntry .TALS_RemoveButton:hover {
    background: #668d99;
}

