/* 컨트롤 바 */

#video-controls {
    position: fixed;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    display: flex;
    flex-direction: column;
    user-select: none;
    
}

#progressBar {
    appearance: none;
    height: 5px;
    width: 100%;
}

#progressBar::-webkit-progress-bar {
    background-color: rgba(128, 128, 128, 0);
}

#progressBar::-webkit-progress-value {
    background-color: rgb(255, 255, 255);
    transition-property: all;
    transition-duration: 0.258s;
    transition-timing-function: linear;
    transition-delay: 0s;
}



#controls-buttons {
    background-color: rgba(44, 44, 44, 0.5);
    padding: 10px;
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    user-select: none;

}

#button-spacer {
    width: 80%;
}

#button-spacer-2 {
    width: 0.5%;
}

#playPauseButton {
    left: 10px;
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: rgb(255, 255, 255);
    /* 아이콘 크기 조절 */
}

#timeDisplay {
    left: 50px;
    position: absolute;
    color: rgb(192, 192, 192);
}