.gallery {
    display: flex;
    overflow-x: auto;
    width: 100%; /* Adjust as needed */
}

.video-wrapper {
    width: 300px; /* Adjust thumbnail width */
    margin-right: 20px; /* Spacing between videos */
    transition: transform 0.2s; /* Smooth hover effect */
}

.video-wrapper:hover {
    transform: scale(1.15); /* Expand slightly on hover */
}

video {
    width: 100%;
}
