﻿
/* Add CSS styles for the popup container and video */
/* You can customize the appearance as needed */
#video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    text-align: center;
}

#video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}


