.video-shell {
  max-width: 1180px;
}

.overview-actions,
.video-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.video-panel,
.transcript-panel {
  padding: 20px;
}

#video-canvas {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101828;
}

.video-controls {
  justify-content: flex-start;
  margin-top: 14px;
}

.video-button {
  width: auto;
  min-width: 150px;
  padding: 0 18px;
}

.download-link {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  text-decoration: none;
}

.download-link.ready {
  display: inline-flex;
}

.video-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.transcript-panel {
  margin-top: 18px;
}

#video-script {
  overflow-x: auto;
  white-space: pre-wrap;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 16px;
  color: #344054;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .overview-actions {
    justify-content: flex-start;
  }
}

