/* From https://dorverbin.github.io/refnerf/. */
.video-compare-container {
    width: 63%;
    margin: 0 auto;
    position: relative;
    display: block;
    line-height: 0;
}

.video {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
}

.videoMerge {
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: block;
    margin: 0 auto;
    background-size: cover;
}

.cropped-video {
    width: 100%;
    overflow: hidden;
    display: block;
}

.drag-arrow {
    width: 90px; /* Adjust this value as needed */
    position: absolute;
    filter: invert(100%);
    top: 10%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%);
    z-index: 15; /* Ensure it's above the video and canvas */
    transition: opacity 0.5s ease; /* Adjust the duration as needed */
}