.galleryVideo-listContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1700px;
}

.galleryVideo-card {
    border: solid 2px #f1f1f1;
    border-radius: 20px;
    padding: 10px;
    width: 450px;
    margin: 10px;
    transition: all 0.3s ease;
    text-align: left;
    text-decoration: none;
    color: #111111;
    cursor: pointer;
    position: relative;
}

.galleryVideo-card:hover .play-button-overlay {
    scale: 110%;
}


/* Modal styling */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    max-width: 90%;
    max-height: 90%;
}

.video-modal video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Thumbnail canvas */
.video-thumbnail-canvas {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Play button overlay */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    pointer-events: none;
    transition: all 0.3s ease;
}

.galleryVideo-container {
    position: relative;
    overflow: hidden;
}
