.video-playlist-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}


/* RIGHT SIDEBAR PLAYLIST */
.playlist-container {
    width: 260px;
    max-height: 600px;
    overflow-y: auto;
    padding-left: 15px;
    border-left: 1px solid #ccc;
    
}

.playlist-entry {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}


.playlist-thumb {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
    background-color: #ccc;
}

.playlist-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 240px;
    position: relative;
}

/* Tooltip on hover */
.playlist-title:hover::after {
    content: attr(title);
    position: absolute;
    left: 0;
    top: -28px;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 9999;
    font-size: 13px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

/* VIDEO + PLAYLIST SIDE-BY-SIDE */
.video-playlist-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 20px;
}