:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  --page: #f2f2f7;
  --panel: rgba(255, 255, 255, .86);
  --panel-solid: #ffffff;
  --panel-soft: rgba(248, 248, 252, .92);
  --label: #111827;
  --secondary: #6b7280;
  --tertiary: #9ca3af;
  --separator: rgba(60, 60, 67, .18);
  --blue: #007aff;
  --blue-pressed: #0062cc;
  --green: #34c759;
  --orange: #ff9f0a;
  --red: #ff3b30;
  --music: #0a84ff;
  --music-deep: #0069d9;
  --voice: #ff375f;
  --voice-deep: #c91f46;
  --shadow: 0 18px 44px rgba(31, 41, 55, .12);
  --small-shadow: 0 8px 22px rgba(31, 41, 55, .08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --track-label-width: 104px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--page);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fbfbfd 0%, #f2f2f7 42%, #eaf2fb 100%);
  color: var(--label);
}

button,
input {
  font: inherit;
}

button {
  appearance: none;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-md);
  background: rgba(118, 118, 128, .12);
  color: var(--label);
  font-weight: 700;
  padding: 12px 15px;
  touch-action: manipulation;
}

button:active {
  transform: scale(.985);
}

button:disabled {
  opacity: .38;
  transform: none;
}

button.primary,
button.export,
.play-button {
  background: var(--blue);
  color: #fff;
}

button.primary:active,
button.export:active,
.play-button:active {
  background: var(--blue-pressed);
}

button.danger {
  background: rgba(255, 59, 48, .11);
  color: var(--red);
}

button:focus-visible,
input:focus-visible,
label:focus-within {
  outline: 4px solid rgba(0, 122, 255, .22);
  outline-offset: 2px;
}

.app-shell {
  width: min(1366px, 100%);
  margin: 0 auto;
  padding: calc(10px + env(safe-area-inset-top)) 12px calc(22px + env(safe-area-inset-bottom));
}

.visually-hidden {
  display: none !important;
}

.command-bar,
.transport-deck,
.panel,
.timeline-panel {
  border: 1px solid rgba(255, 255, 255, .7);
  background: var(--panel);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  backdrop-filter: blur(28px) saturate(1.5);
}

.command-bar {
  position: sticky;
  top: 8px;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border-radius: 22px;
  padding: 8px 10px;
}

.brand,
.header-status,
.source-actions,
.transport-main,
.project-stats,
.export-box,
.panel-title,
.utility-row,
.clip-actions {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(145deg, #0a84ff, #64d2ff);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .38), 0 8px 18px rgba(0, 122, 255, .26);
  font-weight: 900;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  overflow: hidden;
  color: var(--label);
  font-size: 20px;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand p {
  margin-top: 4px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 650;
}

.header-status {
  justify-content: flex-end;
}

.action-button {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 48px;
  gap: 3px;
  border-radius: 14px;
  background: rgba(118, 118, 128, .10);
  color: var(--secondary);
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}

.action-button span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.action-button:active,
.action-button:focus-visible {
  background: rgba(0, 122, 255, .10);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(118, 118, 128, .13);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pill.ready {
  background: rgba(52, 199, 89, .16);
  color: #16763a;
}

.transport-deck {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 9px;
  align-items: center;
  margin: 10px 0;
  border-radius: 22px;
  padding: 9px;
}

.transport-main {
  gap: 10px;
}

.play-button,
.pause-button,
.stop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 52px;
  gap: 6px;
  border-radius: 17px;
  font-size: 16px;
}

.play-button span,
.pause-button span,
.stop-button span {
  font-size: 15px;
}

.pause-button,
.stop-button {
  background: rgba(118, 118, 128, .13);
  color: var(--label);
}

.time-display,
.project-stats > div {
  display: grid;
  align-content: center;
  min-height: 52px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .62);
  padding: 6px 11px;
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, .08);
}

.time-display {
  min-width: 106px;
}

.time-display span,
.project-stats span {
  color: var(--tertiary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.time-display strong,
.project-stats strong {
  color: var(--label);
  font-size: 19px;
  font-variant-numeric: tabular-nums;
  line-height: 1.12;
}

.project-stats {
  gap: 8px;
}

.project-stats > div {
  min-width: 92px;
}

.project-stats strong {
  font-size: 15px;
}

.export-box {
  justify-content: flex-end;
  gap: 9px;
}

.seek-bar {
  position: relative;
  grid-column: 1 / -1;
  height: 28px;
  border-radius: 999px;
  background: rgba(118, 118, 128, .14);
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, .08);
  touch-action: none;
}

.seek-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #64d2ff);
}

.seek-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 5px 16px rgba(0, 122, 255, .32);
  pointer-events: auto;
}

.seek-thumb::before {
  content: "";
  position: absolute;
  inset: -18px;
}

.format-pills {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(118, 118, 128, .12);
}

.format-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 11px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

button.format-pill {
  min-height: 30px;
  box-shadow: none;
}

.format-pill.active {
  background: var(--panel-solid);
  color: var(--blue);
  box-shadow: var(--small-shadow);
}

.format-pill.muted {
  opacity: .46;
}

.export-progress {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  padding: 9px 11px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .62);
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, .08);
}

.export-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 850;
}

.export-progress-head strong {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.export-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(118, 118, 128, .14);
}

.export-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width .16s ease;
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(310px, 360px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.inspector {
  display: grid;
  gap: 14px;
}

.panel,
.timeline-panel {
  border-radius: var(--radius-xl);
}

.panel {
  padding: 16px;
}

.panel-title {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}

.panel-title h2,
.timeline-heading h2 {
  color: var(--label);
  font-size: 19px;
  line-height: 1.16;
}

.panel-title span,
#recStatus {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 750;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(118, 118, 128, .12);
}

.segment {
  min-height: 42px;
  border-radius: 11px;
  background: transparent;
  color: var(--secondary);
}

.segment.active {
  background: var(--panel-solid);
  color: var(--label);
  box-shadow: 0 2px 8px rgba(31, 41, 55, .10);
}

.source-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.file-input {
  position: fixed;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.drop-zone {
  display: grid;
  place-items: center;
  min-height: 92px;
  margin-top: 10px;
  border: 2px dashed rgba(0, 122, 255, .25);
  border-radius: 22px;
  background: rgba(0, 122, 255, .06);
  color: var(--label);
  text-align: center;
}

.drop-zone.dragging {
  border-color: var(--blue);
  background: rgba(0, 122, 255, .11);
}

.drop-zone strong {
  font-size: 16px;
}

.drop-zone span {
  margin-top: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
}

.switch input {
  width: 24px;
  height: 24px;
  accent-color: var(--green);
}

.control {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  color: var(--label);
  font-weight: 750;
}

.control span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

output {
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

input[type="number"] {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(118, 118, 128, .10);
  color: var(--label);
  padding: 10px 12px;
  font-size: 17px;
  font-weight: 750;
}

.utility-row,
.clip-actions {
  gap: 8px;
}

.utility-row button,
.clip-actions button {
  flex: 1 1 0;
}

.selected-name {
  min-height: 34px;
  margin-bottom: 12px;
  overflow: hidden;
  color: var(--label);
  font-size: 17px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intro-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: rgba(255, 159, 10, .11);
  color: #9a5a00;
  padding: 0 12px;
  font-weight: 850;
}

.intro-toggle input {
  width: 24px;
  height: 24px;
  accent-color: var(--orange);
}

.edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.edit-grid label {
  display: grid;
  gap: 6px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 850;
}

.intro-control {
  grid-column: 1 / -1;
}

.clip-actions {
  margin-top: 12px;
  flex-wrap: wrap;
}

.clip-actions button {
  min-width: calc(50% - 4px);
}

.timeline-panel {
  overflow: hidden;
}

.timeline-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 16px 10px;
}

.timeline-heading p {
  margin-top: 4px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 650;
}

.timeline-heading button {
  flex: 0 0 auto;
}

.timeline-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 16px 16px;
  -webkit-overflow-scrolling: touch;
}

.timeline {
  position: relative;
  min-width: 860px;
}

.ruler {
  position: relative;
  height: 34px;
  margin-left: var(--track-label-width);
  border-radius: 17px;
  background:
    repeating-linear-gradient(
      to right,
      rgba(60, 60, 67, .18) 0 1px,
      transparent 1px 66px
    ),
    rgba(255, 255, 255, .56);
}

.ruler-tick {
  position: absolute;
  top: 9px;
  transform: translateX(8px);
  color: var(--tertiary);
  font-size: 11px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.track-row {
  display: grid;
  grid-template-columns: var(--track-label-width) 1fr;
  margin-top: 10px;
}

.track-label {
  display: grid;
  align-content: center;
  min-height: 126px;
  border-radius: 22px 0 0 22px;
  background: rgba(255, 255, 255, .72);
  padding: 12px;
  box-shadow: inset -1px 0 0 rgba(60, 60, 67, .09);
}

.track-label strong {
  color: var(--music);
  font-size: 13px;
  letter-spacing: .04em;
}

.track-label span {
  margin-top: 5px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 850;
}

.voice-label strong {
  color: var(--voice);
}

.lane {
  position: relative;
  min-height: 126px;
  border-radius: 0 22px 22px 0;
  background:
    repeating-linear-gradient(
      to right,
      rgba(60, 60, 67, .10) 0 1px,
      transparent 1px 66px
    ),
    rgba(255, 255, 255, .48);
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, .08);
}

.clip {
  position: absolute;
  top: 15px;
  height: 96px;
  min-width: 100px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 41, 55, .16), inset 0 1px 0 rgba(255, 255, 255, .34);
  touch-action: none;
  user-select: none;
}

.clip::before {
  content: "";
  position: absolute;
  inset: -12px;
}

.clip.music {
  background: linear-gradient(145deg, var(--music), var(--music-deep));
}

.clip.voice {
  background: linear-gradient(145deg, #ff6482, var(--voice-deep));
}

.clip.selected {
  outline: 4px solid rgba(255, 159, 10, .72);
  outline-offset: 3px;
}

.waveform {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: 50px;
  opacity: .76;
}

.intro-zone,
.fade-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.intro-zone {
  left: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, .20) 0 9px,
      rgba(255, 255, 255, .05) 9px 18px
    ),
    rgba(255, 159, 10, .28);
  box-shadow: inset -2px 0 0 rgba(255, 159, 10, .78);
}

.fade-in-zone {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, 0));
}

.fade-out-zone {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, 0));
}

.intro-zone span,
.fade-zone span {
  position: absolute;
  bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: rgba(17, 24, 39, .72);
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 950;
  white-space: nowrap;
}

.intro-zone span,
.fade-in-zone span {
  left: 9px;
}

.fade-out-zone span {
  right: 9px;
}

.clip-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, 0));
}

.clip-copy strong,
.clip-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clip-copy strong {
  font-size: 14px;
}

.clip-copy span {
  opacity: .86;
  font-size: 12px;
  font-weight: 850;
}

.intro-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 4px;
  background: var(--orange);
  cursor: ew-resize;
}

.clip-handle {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 64px;
  min-height: 64px;
  margin: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, .92);
  color: rgba(17, 24, 39, .76);
  box-shadow: 0 8px 18px rgba(31, 41, 55, .18);
  touch-action: none;
}

.trim-handle {
  top: 16px;
}

.trim-start-handle {
  left: 7px;
}

.trim-end-handle {
  right: 7px;
}

.trim-start-handle::after,
.trim-end-handle::after {
  content: "";
  width: 4px;
  height: 30px;
  border-radius: 999px;
  background: rgba(17, 24, 39, .45);
  box-shadow: 7px 0 0 rgba(17, 24, 39, .22), -7px 0 0 rgba(17, 24, 39, .22);
}

.fade-handle {
  top: 58px;
  width: 54px;
  height: 38px;
  min-height: 38px;
  transform: translateX(-50%);
}

.fade-out-handle {
  transform: translateX(50%);
}

.fade-handle span {
  font-size: 10px;
  font-weight: 950;
}

.intro-marker::before {
  content: "";
  position: absolute;
  top: 0;
  left: -17px;
  width: 38px;
  height: 100%;
}

.intro-marker span {
  position: absolute;
  top: 7px;
  left: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #9a5a00;
  padding: 4px 7px;
  box-shadow: var(--small-shadow);
  font-size: 10px;
  font-weight: 950;
}

.playhead {
  position: absolute;
  top: 34px;
  bottom: 0;
  left: var(--track-label-width);
  z-index: 4;
  width: 3px;
  border-radius: 999px;
  background: #111827;
  pointer-events: auto;
  touch-action: none;
}

.playhead::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #111827;
}

.playhead::after {
  content: "";
  position: absolute;
  top: -28px;
  bottom: -18px;
  left: -24px;
  width: 52px;
  border-radius: 999px;
  pointer-events: auto;
}

.cue-panel {
  margin: 0 16px 16px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .58);
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, .08);
}

.cue-list {
  display: grid;
  gap: 8px;
}

.empty {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
}

.cue-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .74);
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, .08);
}

.cue-item.active {
  background: rgba(0, 122, 255, .10);
  color: var(--blue);
}

.cue-item span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.cue-item strong,
.cue-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cue-item small {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 750;
}

.cue-item b {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.toast {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 20;
  max-width: min(420px, calc(100vw - 32px));
  transform: translateY(14px) scale(.98);
  border-radius: 18px;
  background: rgba(28, 28, 30, .88);
  color: #fff;
  padding: 13px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .20);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (max-width: 1120px) {
  .studio-layout {
    grid-template-columns: 1fr;
  }

  .transport-main,
  .project-stats,
  .export-box {
    justify-content: stretch;
  }

  .transport-main > *,
  .project-stats > *,
  .export-box > * {
    flex: 1 1 auto;
  }

  .timeline-panel {
    order: 1;
  }

  .inspector {
    order: 2;
  }

  .inspector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clip-panel {
    grid-column: span 3;
  }
}

@media (max-width: 900px) {
  .transport-deck {
    grid-template-columns: 1fr 1fr;
  }

  .transport-main,
  .seek-bar {
    grid-column: 1 / -1;
  }

  .inspector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clip-panel {
    grid-column: span 2;
  }

  .transport-main,
  .project-stats,
  .export-box {
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  :root {
    --track-label-width: 86px;
  }

  .app-shell {
    padding: calc(8px + env(safe-area-inset-top)) 8px calc(18px + env(safe-area-inset-bottom));
  }

  .command-bar {
    top: 6px;
    min-height: 48px;
    border-radius: 18px;
    padding: 7px 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 12px;
  }

  h1 {
    font-size: 17px;
  }

  .brand p {
    display: none;
  }

  .pill {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }

  .transport-main,
  .project-stats,
  .export-box,
  .utility-row,
  .clip-actions {
    flex-wrap: wrap;
  }

  .transport-deck {
    gap: 7px;
    margin: 8px 0;
    padding: 8px;
  }

  .transport-main {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .project-stats {
    display: none;
  }

  .export-box {
    justify-content: stretch;
    grid-column: 1 / -1;
  }

  .inspector {
    grid-template-columns: 1fr;
  }

  .clip-panel {
    grid-column: auto;
  }

  .action-button {
    min-width: 0;
  }

  .play-button,
  .pause-button,
  .stop-button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    border-radius: 15px;
    padding: 8px 6px;
    font-size: 14px;
  }

  .time-display {
    flex: 0 0 92px;
    min-width: 92px;
    min-height: 46px;
    padding: 5px 9px;
  }

  .time-display strong {
    font-size: 17px;
  }

  .seek-bar {
    height: 24px;
  }

  .seek-thumb {
    width: 28px;
    height: 28px;
  }

  .source-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .timeline-heading button {
    width: 100%;
  }

  .timeline {
    min-width: 760px;
  }

  .track-label,
  .lane {
    min-height: 116px;
  }

  .clip {
    height: 86px;
  }
}
