/* app/static/css/video.css */

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .hidden {
    display: none;
  }
  
  .video-container {
    position: relative;
    max-height: 80vh; 
    width: auto;
    display: flex;
    align-items: center;
  }
  
  .video-player {
    max-height: 80vh;
    width: auto;
    border-radius: 8px;
  }
  
  .close-video {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
  }