#videoList {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.videoItem {
  cursor: pointer;
  margin: 5px;
}

.videoItem.watched {
  opacity: 0.5;
}

.videoItem.playing {
  font-weight: bold;
}

#videoPlayer {
  width: 100%;
  max-width: 100vw;
}
