html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.video-element {
  width: 100%;
  border-radius: 12px;
  outline: none;
}

.close-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #ff4d4f;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
}

#video_player_div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 80px;
    z-index: 10;
}

#videoPlayer {
    background: #000000;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}