.video-playlist {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 460px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 8px;
}

.video-playlist .list-group-item {
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    border: none;
}

.video-playlist .list-group-item img {
    border-radius: 4px;
    width: 100px;
    margin-right: 10px;
}

.video-playlist .list-group-item span {
    font-size: 13.2px;
    line-height: 1.2;
    font-weight: 400;
}

.video-playlist .list-group-item:hover:not(.active) {
    background: #f5f5f5;
    /* hover effect only for non-active */
}

.video-playlist .list-group-item.active {
    border-radius: 8px;
    background: #0078b7;
    font-weight: 600;
}

#videoTitle {
    font-size: 24px;
    text-align: left;
    line-height: 30px;
    font-weight: 600;
}

  .video-playlist .list-group-item {
    cursor: pointer;
    transition: background 0.2s;
  }
  .video-playlist .list-group-item:hover {
    background: #01669c;
  }
  .video-playlist img {
    border-radius: 6px;
  }
  .video-playlist span {
    font-size: 14px;
    line-height: 1.2;
  }

.video-player-lng iframe {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}