
.videoPanel {
  width: 80%;
  margin: 0 auto;
  padding: 0;
  /* border: 5px solid rgba(43, 51, 63, 0.7) !important;
  /* border: 5px solid #F00 !important; */
  /* border: 5px solid #2B333F !important; */

  border: 5px solid rgba(43, 51, 63, 0.7) !important;
  background-color: rgba(43, 51, 63, 0.7) !important;

  /* border: 5px solid rgba(0, 0, 0, 0.7) !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.2); */
  
  border-radius: 5px;
  /* box-shadow: 0 4px 4px rgba(43, 51, 63, 0.7); */
  position: relative;
  margin-bottom: 20px;
}

#videoPlayer {
  width: 100%;
  height: auto;
}

/* Video.js custom styling */
.video-js {
  font-family: 'Kanit', sans-serif;
}

.video-js .vjs-control-bar {
  /* background-color: #2B333F !important; */
  background-color: rgba(43, 51, 63, 0.7) !important;
   /* background-color: rgba(0, 0, 0, 0.7) !important; */
}

.vjs-custom-button {
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 32px;
  /* transition: all 0.3s ease; */
  min-width: 80px;
}

.vjs-custom-button:hover {
  transform: scale(1.15);
}

.vjs-custom-button:active {
  transform: scale(0.95);
}

.vjs-custom-button i {
  margin: 0 6px;
  font-size: 32px;
  vertical-align: middle;
}

.vjs-custom-overlay {
  background: rgba(43, 51, 63, 0.7);
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(80px);
}


.vjs-custom-title {
  background: rgba(43, 51, 63, 0.7);
  padding: 10px;
  border-radius: 0;
  backdrop-filter: blur(80px);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
}