/* Background overlay covering the whole screen */
.popup-overlay {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); /* Dark background with transparency */
}

/* Open button */
#openBtn {
   color: #2222FF;
}

/* Center container for the video and close button */
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
}

/* Make the video player responsive */
.popup-content video {
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
}

/* Styling for the close (X) button */
.close-x {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close-x:hover {
  color: #ff0000;
}

