:root {
    --hoverColor: #eeeeee;
    --bgColor: rgb(255, 255, 255);
    --selectedBorder: rgb(21, 114, 235);
    --border: rgb(231, 234, 238);
    --hoverBorder: rgb(191, 193, 195);
    --timeColor:rgb(56, 56, 56);
    --speakerColor: rgb(0, 138, 255);
}
.vttEntry {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    border: 1px solid var(--border);
    overflow: visible;
    margin-bottom: 10px;
}
.selected {
    border: 2px solid var(--selectedBorder);
}

.vttEntry:hover {
    /* border: 1px solid var(--hoverBorder); */
    background-color: var(--hoverColor);
}
.vttEntry:hover > * {
    background-color: var(--hoverColor);
}
.timingColumn {
    display: flex;
    flex-direction: column;
    width: 100px;
    padding: 14px;
}

.vttNumber {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2px;
    font-size: 19px;
}

.vttTimingCell {
    position: relative;
    max-height: 18px;
    width: 95px;
    padding-bottom: 4px;
}

.vttTimingInput {
    width: 100%;
    font-size: 14px;
    white-space: nowrap;
    border: 0px;
    border-radius: 0.4rem;
    padding: 1px 0px 1px 8px;
    margin-left: -8px;
    font-weight: 600;
    color: var(--timeColor);
}

.vttSpeakerName {
    display: flex;
    flex-direction: row;
    font-size: 14px;
    font-weight: bold;
    align-items: center;
    margin-bottom: 2px;
    position: relative;
    color: var(--speakerColor);
    padding-bottom: 5px;
    padding-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vttText {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: initial;
    padding: 14px;
    color: rgb(56, 56, 56);
    background-color: var(--bgColor);
    outline: currentcolor;
    -webkit-user-select: text;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    align-self: center;
}