:root {
  color-scheme: dark;
  --bg: #050506;
  --panel: #111113;
  --panel-2: #171719;
  --panel-3: #202024;
  --line: #2b2b31;
  --text: #f5f7fb;
  --muted: #8a8f99;
  --soft: #c9ccd3;
  --green: #16a34a;
  --green-2: #052f19;
  --green-3: #0b5d2b;
  --red: #ef4444;
  --red-2: #431313;
  --yellow: #f8c14a;
  --focus: #60a5fa;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  --cue-default: #032612;
  --cue-current: #16a34a;
  --cue-next: #042f17;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

input,
select {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0b0b0d;
  color: var(--text);
  outline: none;
}

input:focus,
select:focus,
[contenteditable="true"]:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
  background: #030304;
  border-right: 1px solid #16161a;
  z-index: 20;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #141418;
  color: #f4f4f5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.rail-button {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.rail-button.active,
.rail-button:hover {
  background: #18181c;
  color: var(--text);
}

.rail-button.active {
  box-shadow: inset 3px 0 0 var(--red);
}

.shell {
  height: 100%;
  margin-left: 56px;
  overflow: hidden;
}

.view {
  display: none;
  min-height: 100%;
}

.view.active {
  display: block;
}

#rundown-view.active {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 0;
}

#dashboard-view {
  max-width: 840px;
  padding: 72px 24px 40px;
  margin: 0 auto;
}

.dashboard-head,
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
}

.primary-action,
.publish-button,
.start-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--red);
  color: white;
  font-weight: 800;
}

.primary-action:hover,
.publish-button:hover,
.start-button:hover {
  background: #dc2626;
}

.publish-button {
  flex: 0 0 auto;
  background: #2563eb;
}

.publish-button:hover {
  background: #1d4ed8;
}

.start-button.running {
  background: #991b1b;
}

.start-button.paused {
  background: var(--yellow);
  color: #101010;
}

.dashboard-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 34px 0 20px;
}

.search-wrap input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: var(--panel);
}

.ghost-button,
.cue-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--soft);
}

.ghost-button:hover,
.cue-button:hover {
  background: var(--panel-3);
  color: var(--text);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.section-label::before,
.section-label::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}

.rundown-card {
  width: 100%;
  display: grid;
  gap: 14px;
  padding: 20px;
  text-align: left;
  background: var(--panel);
  border: 1px solid #202026;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rundown-card:hover {
  background: #18181b;
  border-color: #393943;
}

.card-kicker {
  color: var(--muted);
  font-size: 13px;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
}

.card-meta {
  color: var(--soft);
  font-size: 14px;
}

.topbar {
  position: relative;
  flex: 0 0 auto;
  z-index: 10;
  padding: 12px 16px;
  background: rgba(5, 5, 6, 0.98);
  border-bottom: 1px solid #17171a;
}

.topbar-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-title h1 {
  overflow: hidden;
  max-width: 520px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-title p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.view-only-mode .rail,
.view-only-mode .showbar,
.view-only-mode .rundown-settings {
  display: none;
}

.view-only-mode .shell {
  margin-left: 0;
}

.view-only-mode .topbar {
  padding: 14px 18px;
}

.view-only-mode .table-wrap {
  padding-left: 18px;
}

.view-only-mode .append-cue-row {
  display: none;
}

.back-button {
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--panel-2);
  color: var(--soft);
}

.clock-strip {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}

.clock-box {
  min-width: 176px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0b0d;
}

.clock-box span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.clock-box select {
  height: 28px;
  padding: 0 8px;
}

.clock-box strong {
  font-variant-numeric: tabular-nums;
  font-size: 18px;
}

.showbar {
  position: relative;
  flex: 0 0 auto;
  z-index: 9;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 96px 112px 100px auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #080809;
  border-bottom: 1px solid #17171a;
}

.tracker {
  min-height: 44px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--green-2);
  border: 1px solid var(--green-3);
}

.tracker.over {
  background: var(--red-2);
  border-color: #7f1d1d;
}

.tracker.neutral {
  background: var(--panel-2);
  border-color: var(--line);
}

.tracker span {
  color: var(--soft);
  font-size: 13px;
}

.tracker strong {
  font-variant-numeric: tabular-nums;
  color: #bbf7d0;
}

.tracker.over strong {
  color: #fecaca;
}

.tracker.neutral strong {
  color: var(--soft);
}

.duration-control,
.add-duration {
  display: flex;
  align-items: stretch;
  min-width: 168px;
}

.duration-control button,
.add-duration button {
  min-width: 72px;
  padding: 0 14px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  font-weight: 800;
}

.cue-button,
.start-button {
  min-height: 44px;
  white-space: nowrap;
}

.duration-control select,
.add-duration select {
  width: 104px;
  padding: 0 8px;
}

.subtract-duration select {
  border-radius: 6px 0 0 6px;
}

.subtract-duration button {
  border-left: 0;
  border-radius: 0 6px 6px 0;
}

.add-duration button {
  border-radius: 6px 0 0 6px;
}

.add-duration select {
  border-left: 0;
  border-radius: 0 6px 6px 0;
}

.rundown-settings {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #17171a;
  color: var(--muted);
  font-size: 13px;
}

.rundown-settings strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.table-wrap {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  overflow: auto;
  padding: 0 8px 40px 16px;
}

.rundown-end-panel {
  min-width: max-content;
  margin: 24px 0 28px;
  padding: 0 0 0 8px;
}

.end-metrics {
  display: flex;
  align-items: flex-start;
  gap: 54px;
  margin: 0 0 14px;
}

.end-metrics div {
  display: grid;
  gap: 2px;
}

.end-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.end-metrics strong {
  color: var(--text);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.end-metrics strong.changed {
  color: rgba(245, 247, 251, 0.82);
  text-decoration: line-through;
}

.end-metrics strong.late {
  color: #ef4444;
}

.end-metrics strong.early {
  color: #22c55e;
}

.append-cue-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.split-add-cue {
  position: relative;
  display: flex;
}

.split-add-cue > button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 18px;
}

#append-cue-button {
  border-radius: 5px 0 0 5px;
  font-weight: 700;
}

#append-cue-button span {
  color: var(--soft);
  font-size: 24px;
  line-height: 1;
}

#append-cue-menu-toggle {
  width: 42px;
  justify-content: center;
  border-left: 0;
  border-radius: 0 5px 5px 0;
}

#append-cue-menu-toggle.active,
.split-add-cue > button:hover {
  background: var(--panel-3);
}

.append-cue-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 30;
  width: 136px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #050506;
  box-shadow: var(--shadow);
}

.append-cue-menu[hidden] {
  display: none;
}

.append-cue-menu button {
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.append-cue-menu button:hover {
  background: var(--panel-2);
}

.append-cue-menu span {
  width: 14px;
  color: var(--soft);
  text-align: center;
  font-weight: 800;
}

.append-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 18px;
}

.append-count input {
  width: 64px;
  height: 38px;
  padding: 0 10px;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.rundown-grid {
  display: grid;
  gap: 4px;
  min-width: max-content;
}

.header-row {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 10px 0 6px;
  background: #050506;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-row > div,
.header-row > input,
.header-row > button {
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid transparent;
}

.header-row > input {
  width: 100%;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
}

.header-row > button {
  justify-content: center;
  border-radius: 6px;
  background: var(--panel-2);
  border-color: var(--line);
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.header-row > button:hover {
  background: var(--panel-3);
  color: var(--text);
}

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

.cue-row {
  align-items: stretch;
}

.cue-row.meta-row {
  align-items: center;
}

.cue-row.group-row {
  align-items: stretch;
}

.cue-separator {
  min-width: max-content;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 6px 0 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cue-separator.next {
  color: var(--text);
}

.cue-separator::before,
.cue-separator::after {
  content: "";
  height: 2px;
  background: currentColor;
}

.cue-separator.next::before,
.cue-separator.next::after {
  height: 1px;
  opacity: 0.72;
}

.cue-tools {
  min-height: 74px;
  display: grid;
  grid-template-rows: 22px 1fr 22px;
  align-items: center;
  justify-items: center;
  gap: 3px;
}

.cue-tool-button,
.drag-handle {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
}

.drag-handle {
  opacity: 0;
  cursor: grab;
  line-height: 1;
}

.cue-row:hover .drag-handle,
.cue-row.current .drag-handle,
.cue-row.next .drag-handle {
  opacity: 1;
}

.drag-handle:active {
  cursor: grabbing;
}

body.dragging-cue,
body.dragging-cue * {
  cursor: grabbing;
}

.cue-tool-button:hover,
.drag-handle:hover,
.cue-tool-button.active {
  background: var(--panel-2);
  border-color: var(--line);
  color: var(--text);
}

.cue-select {
  width: 13px;
  height: 13px;
  accent-color: var(--focus);
}

.cue-row.drag-over .cue-cell {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}

.cue-row.group-child {
  position: relative;
}

.cue-row.group-child .cue-tools {
  position: relative;
}

.cue-row.group-child .cue-tools::before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: 14px;
  width: 3px;
  border-radius: 999px;
  background: var(--group-line, #4b5563);
  opacity: 0.78;
}

.cue-row.group-child .cue-cell.number {
  border-left: 4px solid var(--group-line, #4b5563);
}

.cue-row.selected .cue-cell {
  box-shadow: inset 0 0 0 2px rgba(96, 165, 250, 0.35);
}

.cue-row.queued .cue-cell {
  border-color: #f8c14a;
}

.cue-cell {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  overflow: hidden;
  border: 1px solid #071f12;
  background: var(--cue-bg, var(--cue-default));
  color: var(--text);
}

.cue-cell.number {
  justify-content: center;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  background: #063116;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.cue-cell:last-child {
  border-radius: 0 6px 6px 0;
}

.cue-cell.time,
.cue-cell.duration {
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

.cue-cell.duration {
  font-size: 18px;
  font-weight: 800;
}

.cue-cell.main {
  font-size: 18px;
  font-weight: 700;
}

.cue-cell.custom {
  color: #d8dee9;
}

.cue-row.meta-row .cue-tools {
  min-height: 50px;
}

.cue-cell.meta-cell {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #111113;
  border-color: #27272f;
  font-size: 18px;
  font-weight: 800;
}

.cue-row.type-group .cue-cell.meta-cell {
  background: var(--cue-bg, #273243);
  border-color: #45556e;
}

.cue-cell.group-number {
  background: #1f2937;
  border-color: #45556e;
}

.cue-cell.group-cell {
  min-height: 58px;
  gap: 12px;
}

.group-collapse {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.group-collapse:hover {
  background: rgba(255, 255, 255, 0.1);
}

.group-title {
  min-width: 160px;
  max-width: 460px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.group-summary {
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(245, 247, 251, 0.72);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cue-row.group-row.collapsed .group-summary {
  color: #f8c14a;
}

.meta-tag {
  min-width: 76px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.meta-title {
  color: var(--text);
}

.cell-original {
  color: rgba(245, 247, 251, 0.56);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: line-through;
}

.cell-live {
  min-width: 88px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  color: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.cue-cell.add-column-space {
  background: #070708;
  border-color: #15151a;
}

.cue-cell[contenteditable="true"] {
  border-color: #0d3a21;
  outline: none;
}

.cue-cell[contenteditable="true"]:empty::before {
  content: "Type...";
  color: #5f6b75;
}

.cue-row.current .cue-cell {
  background: var(--cue-current-bg, var(--cue-current));
  border-color: #39d06a;
}

.cue-row.current .cue-cell.number {
  background: var(--red);
  border-color: #ff7676;
}

.cue-row.next .cue-cell {
  background: var(--cue-next-bg, var(--cue-next));
  border-color: #237a3e;
}

.cue-row.overtime .cue-cell {
  background: #4a1212;
  border-color: #8f2525;
}

.cue-row.overtime .cue-cell.number {
  background: #b91c1c;
  border-color: #ff7676;
}

.duration.negative {
  color: #fecaca;
}

.duration.positive {
  color: #f0fdf4;
}

.main-stack {
  display: grid;
  gap: 4px;
}

.main-title {
  font: inherit;
}

.main-subtitle {
  color: rgba(245, 247, 251, 0.52);
  font-size: 13px;
  font-weight: 700;
}

.cue-menu {
  position: fixed;
  z-index: 40;
  width: 220px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050506;
  box-shadow: var(--shadow);
}

.cue-menu[hidden] {
  display: none;
}

.cue-menu button {
  width: 100%;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 10px;
  border-radius: 5px;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.cue-menu button:hover {
  background: var(--panel-2);
}

.cue-menu .danger {
  color: #fecaca;
}

.cue-menu hr {
  height: 1px;
  border: 0;
  margin: 6px 0;
  background: var(--line);
}

.cue-menu small {
  color: var(--muted);
}

.menu-swatch-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 6px 4px;
}

.swatch,
.modal-color-grid button {
  width: 26px;
  height: 26px;
  min-height: 26px;
  padding: 0;
  display: block;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--swatch, #18181b);
}

.cue-menu .swatch {
  width: 26px;
  min-width: 26px;
  height: 26px;
  min-height: 26px;
  padding: 0;
  border-radius: 5px;
}

.default-swatch {
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), #ef4444 0, #ef4444 calc(50% + 1px), transparent 0),
    #18181b !important;
}

.swatch.active,
.modal-color-grid button.active {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.wide-modal {
  width: min(820px, calc(100vw - 28px));
}

.wide-modal h3 {
  margin: 0 0 12px;
}

.colors-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.modal-color-grid {
  display: grid;
  grid-template-columns: repeat(6, 34px);
  gap: 10px 16px;
  margin: 14px 0 10px;
}

.modal-color-grid button {
  width: 34px;
  height: 34px;
}

.text-button {
  min-height: 32px;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  text-align: left;
}

.color-preview {
  display: grid;
  gap: 16px;
}

#color-preview-card {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  border-radius: 5px;
  background: var(--cue-current);
  color: white;
  font-size: 18px;
}

.modal {
  width: min(420px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
}

.modal.wide-modal {
  width: min(820px, calc(100vw - 28px));
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.68);
}

.modal h2 {
  margin: 0 0 8px;
}

.modal p {
  margin: 0 0 18px;
  color: var(--soft);
}

.field {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.field span {
  color: var(--soft);
  font-size: 13px;
}

.field input {
  height: 40px;
  padding: 0 10px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.modal-actions button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--panel-3);
  border: 1px solid var(--line);
}

.modal-actions .danger {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 860px) {
  body {
    overflow: auto;
  }

  .rail {
    width: 48px;
  }

  .shell {
    margin-left: 48px;
  }

  #dashboard-view {
    padding: 38px 16px;
  }

  .dashboard-head,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    position: static;
  }

  .dashboard-tools {
    grid-template-columns: 1fr;
  }

  .clock-strip {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .showbar {
    top: 0;
    grid-template-columns: 1fr 1fr;
  }

  .tracker {
    grid-column: 1 / -1;
  }

  .colors-layout {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    height: auto;
    max-height: none;
  }
}

body.view-only-mode .rail,
body.view-only-mode .showbar,
body.view-only-mode .rundown-settings {
  display: none;
}

body.view-only-mode .shell {
  margin-left: 0;
}

body.view-only-mode .append-cue-row {
  display: none;
}
