body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}


#app-content {
    flex: 1; /* Takes up the remaining space */
}

#video-markup-area {
    display: flex;
}

#video-player-area {
    width: 100%;
    overflow: auto;
    display: flex;
    resize: horizontal;
    padding-right: 10px;
}

#interactive-area {
    border: black;
    height: 90vh;
    width: 50%;
    overflow: scroll;
    display: flex;
    flex: 1 1 auto;
}

#markup-area {
    width: 100%;
}

#seekers {
    padding-right: 10px;
}

#timestamps {
    width: 100%;
    height: 3500rem;

    font-size: 1rem;
    border: none;
    margin: 0;
    padding: 0;
    line-height: 1.2rem;

    white-space: pre;
    overflow-wrap: normal;
    overflow-x: scroll;
}

#controls {
    display: flex;
    justify-content: space-between;
    margin: 0.3em 0.6em;
}

#video-controls {
    width: 50%;
}

#text-controls {
    width: 50%;
    text-align: right;
}

#stats {
    display: none;
    margin: 0.3em 0.6em;
}

#status-bar {
    height: 24px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

#status-message {
    margin: 0;
    color: black;
}
#stats-message {
    margin: 0;
    color: black;
}
input {
    display: block;
    height: 1.2rem;
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
    line-height: 1.2rem;
    color: white;
}


#range-container {
    width: 99%;
    height: 2em;
    min-height: 20px;
    background-color: #ddd;
    border-radius: 6px;
    margin: auto;
    display: block;
}

#range-container > div {
    height: 100%;
}
