.poket-video-sync-wrapper {
    display: flex;
}

.poket-video-sync-wrapper .video-thumbnails-container {
    display: flex;
    overflow-x: scroll;
    width: 100%;
    max-width: 600px;
    gap: 10px;
    padding-bottom: 0.8rem;
}

.poket-video-sync-wrapper .owl-stage {
    padding-left: 0 !important;
}

.poket-video-sync-wrapper .carousel-item {
    display: block;
}

.poket-video-sync-wrapper .video-thumbnail-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    
    /* height: 353px; */
    /* width: 200px; */
    width: 100%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 0.25; /* Los inactivos se ven más apagados */
    flex-shrink: 0;
}

.poket-video-sync-wrapper .video-thumbnail-item:hover,
.poket-video-sync-wrapper .video-thumbnail-item.active {
    opacity: 1; /* El activo/hover se ve normal */
}

.poket-video-sync-wrapper .video-player-display {
    border-radius: 8px;
    overflow: hidden;
}

.poket-video-sync-wrapper .sync-title-area h2 {
    color: white;
    font-size: 24px;
    line-height: 24px;
    margin-top: 1rem;
}

.poket-video-sync-wrapper .list-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Icono de Play sobre la miniatura */
.poket-video-sync-wrapper .list-thumbnail::before {
    content: "\f098";
    font-family: 'Fluenticon' !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    opacity: 0.8;
}