body.dark-theme {
    margin: 0;
    padding: 0;
    background-color: #1E1E1E; /* dark gray background */
    font-family: sans-serif;
    color: #EEEEEE; /* light gray text */
  }
  
  .center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* ensures full height */
    text-align: center;
    margin: 0 auto;
    padding: 20px;
  }
  
  .password-input {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    border: 1px solid #444;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    width: 200px;
  }
  
  /* Container for the 3 "Video" buttons */
  .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Make all accent-buttons the same width */
  .accent-button {
    width: 200px;
    padding: 10px 20px;
    font-size: 16px;
    margin: 5px;
    cursor: pointer;
    /* background-color: #cc4400; /* light orange accent */
    background-color: #466686;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none; /* for anchor links used as buttons */
    text-align: center;
  }
  
  .accent-button:hover {
    opacity: 0.8;
  }
  
  
  .video-container {
    position: relative;
    width: 100%;
    max-width: 4096px; /* or any max width you prefer */
    margin: 0 auto;    /* center horizontally if narrower than the viewport */
    padding-top: 56.25%; 
    /* 
       The padding-top trick forces the container to keep a 16:9 ratio. 
       For example:
         - 4:3 ratio => 75%
         - 21:9 ratio => ~42.85%
         - If you want no max width limit, remove max-width.
    */
  }
  
  /* 
     The video is absolutely positioned within .video-container, 
     taking up its entire area. 
  */
  .video-container .video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }

  @media (max-width: 600px) {
    .vjs-control-bar,
    .vjs-big-play-button {
      font-size: 1.2em; /* or 1.5em */
    }
  }