.custom-video-player {
    position: relative;
} 
.custom-controls {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}
.custom-player::-webkit-media-controls {
    display: none !important;
}
.custom-player::-moz-media-controls {
    display: none !important;
}
.custom-player:fullscreen {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.custom-player:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.custom-player:-moz-full-screen {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.custom-player:-ms-fullscreen {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
  
button#exitFullScreenButton {
    display: none;
}

#playPauseButton {
    position: absolute;
    bottom: 30%;
    height: 2vw;
    width: 6vw;
    left:47%;
    font-size: .7vw;
} 
.volumeSlider{
    position: absolute;
    top: -15vw;
    left: 1%;
    font-size: .7vw;
}
#volumeSlider{
    position: absolute;
    top: -14.7vw;
    left:13%;
    width: 4.5vw;
    height:.2vw;
}
#videoDurationLabel{
    position: absolute;
    top: -15vw;
    font-size: .7vw;
    left: 32%;
}
#videoDurationSlider{
    position: absolute;
    top: -14.7vw;
    right: 2%;
    height: .2vw;
    width:8vw;
}
#rewindButton{
    width: 5vw;
    font-size: .7vw;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: .5vw;
    height: 2vw;
}
#forwardButton{
    width: 6vw;
    font-size: .7vw;
    position: absolute;
    bottom: 0;
    left: 21%;
    margin: .5vw;
    width: 6vw;
    height: 2vw;
}
#fullScreenButton{
    width: 7vw;
    font-size: .7vw;
    position: absolute;
    bottom: 0;
    right: 2%;
    margin: .5vw;
    height: 2vw;
}
.custom-video-class {
  /* Styles for the main container */
  background-color: #f9f9f9;
  padding: 20px;
}

.custom-video-item {
  /* Styles for each video item */
  margin: 10px;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.3s;
}

.custom-video-item:hover {
  /* Styles for hover effect on video items */
  transform: scale(1.05);
}

.custom-video-thumbnail {
  width: 20%;
  border-radius: 5px;
  object-fit: contain;
}
.custom-video-load {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-video-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
  margin-left: 1vw;
}
