#primary-video-container {
  aspect-ratio: 16 / 9;
  width: 90%;
  margin: 20px auto;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid #E4BA6B;
  position: relative; /* Added to position the iframe correctly */
}

#primary-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#thumbnail-container {
  display: flex;
  justify-content: space-evenly;
  /*justify-content: center;*/
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 200px;
  height: 112px; /* 16:9 aspect ratio */
  cursor: pointer;
  
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #E4BA6B;
}

.thumbnail img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}