/* Container */
.shaka-drm-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background: black;
}

/* Video element */
.shaka-drm-container video {
  width: 100%;
  height: auto;
  display: block;
  background: black;
}

/* Watermark */
.shaka-watermark {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(236, 28, 28, 0.6);
  font-size: 18px;
  font-weight: bold;
  user-select: none;
  z-index: 9999;
  white-space: nowrap;
  /* pointer-events: none; */
  transform: rotate(-30deg);
}

/* Custom fake fullscreen button */
.custom-fs-button {
  position: absolute;
  right: 10px;
  bottom: 4px;
  z-index: 9999;
  width: 36px;
  height: 36px;
  background: transparent;
  outline: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.custom-fs-button svg {
  pointer-events: none;
}
