/* Custom Video.js styling */
.video-js {
  /* Overall player styling */
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Big play button styling */
.video-js .vjs-big-play-button {
  background-color: rgba(172, 134, 166, 0.7);
  border-radius: 50%;
  border: none;
  width: 80px;
  height: 80px;
  line-height: 80px;
  transition: all 0.3s;
}

.video-js:hover .vjs-big-play-button {
  background-color: rgba(172, 134, 166, 0.9);
}

/* Control bar styling */
.video-js .vjs-control-bar {
  background-color: #303030;
}

/* Progress bar styling */
.video-js .vjs-play-progress {
  background-color: #ac86a6;
}

.vjs-button {
  background-color: #303030 !important;
  color: #fff !important;
}

.vjs-button:hover {
  background-color: #ac86a6 !important;
  color: #f5f0f4 !important;
  cursor: pointer;
}

.vjs-button:active {
  background-color: #ac86a6 !important;
  color: #f5f0f4 !important;
}

/* Ensure Video.js playback rate button has an icon */
.vjs-playback-rate .vjs-icon-placeholder::before {
  content: "\f114";
  font-family: "VideoJS", sans-serif;
  font-weight: normal;
}
