dialog {
    border: none;
    border-radius: 12px;
    padding: 0;
    max-width: 90%;
    max-height: 90%;
  
    .close-button {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 10;
      transition: background 0.3s;
    }
  
    video {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
    }
  
  }