
/* VideoPanel - Desktop default */
/* .videoPanel {
  position: relative;
  width: 70%;
  max-height: 70vh;
  height: auto;
  margin: 0 auto 100px auto;
  padding: 0;
  overflow: visible;
} */

/* Tablets */
/* @media only screen and (min-width: 769px) and (max-width: 1024px) {
  .videoPanel {
    width: 80%;
    max-height: 50vh;
  }
} */

/* Mobile screens - full width and limited height */
@media only screen and (max-width: 768px) {
  .videoPanel {
    width: 100% !important;
    max-height: 30vh;
    min-height: 0;
    height: auto;
    border-left: none;
    border-right: none;
    border-radius: 0;
    margin: 0 0 20px 0 !important;
    padding: 0;
  }
  
  .videoPanel video,
  .videoPanel .video-js {
    max-height: 30vh !important;
    height: 30vh !important;
    width: 100%;
    object-fit: contain;
  }
}


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

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

.vjs-custom-button {
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 32px;
  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;
}