/* Program stereo peak meter — sibling of the timeline module, same height. */

.timeline-desk-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
  gap: 6px;
}

.timeline-desk-row > .timeline-module {
  flex: 1 1 0;
  min-width: 0;
}

.timeline-audio-meter {
  box-sizing: border-box;
  flex: 0 0 36px;
  width: 36px;
  min-width: 36px;
  align-self: stretch;
  height: auto;
  min-height: 0;
  position: relative;
  background: var(--program-chrome-bg, #161618);
  border: 1px solid var(--cg-line, rgba(255, 255, 255, 0.09));
  border-radius: var(--cg-radius-md, 7px);
  overflow: hidden;
}

.timeline-audio-meter canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}
