/* T2V Page — reuse t2i layout, video-specific overrides */
@import url('../t2i/t2i.css');

/* Note below generate button */
.video-note {
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--bg-input);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  margin: 0;
}

/* Video player: auto height, centered */
.preview-box video {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
  display: block;
}

/* When video is loaded, let the box adapt */
.preview-box:has(video) {
  height: auto;
  min-height: 200px;
  background: #000;
  border-radius: 12px;
}

/* Additional loading sub-text */
.gen-loading .loading-subtext {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  margin-bottom: 4px;
  z-index: 2;
  position: relative;
  text-align: center;
}
