.ytpv-container {
  display: flex;
  height: 500px;
  max-width: 100%;
}

.ytpv-video-list {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
  overflow-y: auto;
  background: #f5f5f5;
}

.ytpv-video-item {
  background: #fff;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}
.ytpv-video-item:hover {
  background: #eaeaea;
}

.ytpv-preview {
  width: 50%;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ytpv-placeholder {
  width: 100%;
  height: 100%;
  background-image: url('../img/placeholder.jpg'); /* Update path if needed */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ytpv-play-button {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ytpv-play-button::before {
  content: "";
  display: block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-left: 25px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

#ytpv-player {
  width: 90%;
  height: 80%;
  border: none;
  display: none;
}
