#joxiloxPlayerContainer {
  position: relative;
  width: 100%;
  max-width: 100%;
}

#joxiloxMainVideo {
  width: 100%;
  height: auto;
  display: block;
  min-height: 300px;
  background: #000;
}

/* Playlist floats over top-right of video */
#joxiloxPlaylist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #6ec1e4;
  padding: 5px;
  border-radius: 6px;
  z-index: 10;
  display: flex;
  flex-direction: column-reverse; /* scroll from bottom to top */
  gap: 8px;
  max-width: 100px;
  max-height: 90%;/*controls visible height */
  overflow-y: auto;
}

/* Each thumbnail block */
#joxiloxPlaylist li {
  list-style: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
}

#joxiloxPlaylist li:last-child {
  margin-bottom: 0px;
}


#joxiloxPlaylist img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/*video-meta {
  font-size: 10px;
  text-align: center;
  line-height: 1 !important;
}*/

#joxiloxPlaylist li {
  position: relative;
}

.video-meta {
  position: absolute;
  bottom: 4px; /* or top: 4px if you prefer */
  left: 4px;
  right: 4px;
  background-color: rgba(255, 255, 255, 0.85); /* white with slight transparency */
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 8px;
  line-height: 1.2;
  text-align: center;
}


  .video-meta span {
  font-size: 8px;
  margin-bottom: 0px;
}

.joxilox-views-display {
  color: #ccc;
  font-size: 0.9em;
  text-align: center;
  margin-top: 8px;
  background-color: #000;
  padding: 6px 0;
}


/* ✅ Mobile: keep layout, scale thumbnails */
@media (max-width: 768px) {
#joxiloxPlaylist {
  top: 3px;
  right: 3px;
  padding: 3px;
  max-width: 90px;
  max-height: 250; /* adjust for mobile viewport */
  overflow-y: auto;
  flex-direction: column-reverse;
}


  .video-meta {
    font-size: 8px;
  text-align: center;
  line-height: 1 !important;
  }
  
  .video-meta span {
  font-size: 5px;
  margin-bottom: 0px;
  padding-top: 0px;
  line-height: 0.8 !important;
}

  
  #joxiloxPlaylist img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin-bottom: 3px;
}

#joxiloxPlaylist li {
  list-style: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 0px;
}

#joxiloxPlaylist li:last-child {
  margin-bottom: 0px;
}

}
