body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    /*overflow: hidden;*/
    font-family: Arial, sans-serif;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.reel-video {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black; 
}

.controls {
    position: absolute;
    bottom: 20px;
    left: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    width: calc(100% - 20px);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
}

.play-pause {
    background: rgba(0, 0, 0, 0);
    color: white;
    height:20px;
    width:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 25px;
    font-weight:bold;
    border-radius: 50%;
    margin-right: 10px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.5);
    height: 3px;
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress {
    background: #ff9900;
    height: 100%;
    width: 0;
    border-radius: 2px;
}

.timer {
   /** background: rgba(0, 0, 0, 0.5);**/
    color: white;
    padding: 5px;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 14px;
}


.video-speaker {
   /** background: rgba(0, 0, 0, 0.5);**/
    color: white;
    padding: 5px;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 25px;
}

.video-list {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

.video-item {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}
