.video_panel_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: black;
    border: 16px solid #5e45b2;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.video_panel_scroll {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

.video_set {
    height: calc(100vh - 32px); /* Account for border */
    min-height: calc(100vh - 32px); /* Ensure it doesn't shrink */
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

.video_set_body {
    width: 100%;
    height: 100%;
}

.video_set_body video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
