/* Play Presentation Movie button styles */
.play-presentation-btn {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
    inset 0 0 0px 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Movie popup styles */
.movie-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.movie-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
    inset 0 0 0px 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.close-popup {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

video {
  display: block;
  width: 100%;
}
