table#fullscreen-video-repeater {
    padding: 10px !important;
}


#fullscreen-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#fullscreen-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


#fullscreen-video, #fullscreen-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;  /* Prevent the overlay from blocking interactions */
}

@media only screen and (max-width: 768px) {
    #fullscreen-video-container[data-disable-mobile="true"] {
        display: none;
    }
}
