.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Video container styles for both thumbnails and lightbox */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-container iframe,
.lightbox-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Lightbox specific styles */
.lightbox-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 50.625vw; /* maintain 16:9 ratio */
    max-height: 80vh;
    max-width: calc(80vh * 16/9);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .video-container {
        margin: 0 auto;
    }
    
    .tm-thumbnail-container.video-container {
        width: 100%;
        padding-top: 56.25%; /* maintain 16:9 ratio */
        margin-bottom: 15px;
    }

    .lightbox-video {
        width: 95vw;
        height: 53.4375vw; /* maintain 16:9 ratio */
    }
}