/* Hide the video element */
#screenVideo {
  visibility: hidden;
  position: absolute;
  z-index: 1;
}

#maskCanvas {
  background-color: rgba(255, 255, 255, 0.2); /* Light background to ensure it's visible */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}
