/* I2V Page — image-to-video, extends i2i layout + video output styles */
@import url('../i2i/i2i.css');

/* Video 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 */
.preview-box video {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
  display: block;
}

.preview-box:has(video) {
  height: auto;
  min-height: 200px;
  background: #000;
  border-radius: 12px;
}

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