/* Shared, stable presentation for text, script, and audio canvas nodes. */
.content-node {
  --content-node-width: 300px;
  --content-node-height: 300px;
  width: var(--content-node-width);
  height: var(--content-node-height);
  min-height: 0;
  padding: 0;
  overflow: visible;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgb(31, 31, 31);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  contain: layout style;
}

.content-node.selected,
.content-node.multi-selected {
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26),
    0 18px 46px rgba(0, 0, 0, 0.44);
}

.content-node.dragging,
.content-node.dragging .content-node-surface,
.content-node.dragging .content-node-primary-action {
  visibility: visible;
  opacity: 1;
}

.content-node > .node-head {
  position: absolute;
  top: -31px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: 100%;
  min-height: 23px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  pointer-events: none;
}

.content-node > .node-head .node-head-icon {
  display: none;
}

.content-node > .node-head .node-head-title,
.content-node > .node-head .node-title {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-node > .node-head .node-status-badge {
  min-height: 19px;
  padding: 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 650;
  line-height: 13px;
}

.content-node > .node-head .node-status-badge.is-quality-warning,
.content-node > .node-head .node-status-badge.is-source-stale {
  border-color: rgba(246, 189, 72, 0.2);
  background: rgba(246, 189, 72, 0.12);
  color: #f6bd48;
}

.content-node > .node-head .node-status-badge.is-quality-failed {
  border-color: rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
}

.node-status-badge.is-quality-warning,
.node-status-badge.is-source-stale {
  background: rgba(246, 189, 72, 0.14);
  color: #f6bd48;
}

.node-status-badge.is-quality-failed {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
}

.script-shot-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 142px;
}

.script-shot-actions .lite-icon-btn {
  min-width: 28px;
  min-height: 26px;
  padding: 2px 6px;
}

.script-shot-lock {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 26px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  cursor: pointer;
}

.script-shot-lock input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: #f6bd48;
}

.lite-script-table tr.is-shot-locked > td {
  background: rgba(246, 189, 72, 0.035);
}

.script-quality-panel {
  flex: 0 0 auto;
  margin: 0 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.66);
}

.script-quality-panel.is-warning { border-color: rgba(246, 189, 72, 0.24); }
.script-quality-panel.is-failed { border-color: rgba(239, 68, 68, 0.3); }

.script-quality-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.script-quality-detail {
  display: grid;
  gap: 10px;
  padding: 0 12px 12px;
  font-size: 11px;
}

.script-quality-detail ul { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.script-quality-detail li { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 8px; }
.script-quality-detail p { margin: 0; color: rgba(255, 255, 255, 0.46); }
.script-workflow-trace { display: flex; flex-wrap: wrap; gap: 5px; }
.script-workflow-trace span { padding: 2px 6px; border-radius: 5px; background: rgba(255, 255, 255, 0.05); }
.script-workflow-trace span.is-completed { color: #34d399; }
.script-workflow-trace span.is-failed { color: #fca5a5; }

.content-node-surface {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: inherit;
}

.content-node-empty-state {
  display: grid;
  grid-template-rows: minmax(96px, 1fr) auto;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 30px 32px 28px;
}

.content-node-line-mark {
  display: grid;
  align-self: end;
  justify-self: center;
  gap: 6px;
  width: 52px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.28);
}

.content-node-line-mark span {
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 5px;
  background: currentColor;
}

.content-node-line-mark span:last-child {
  width: 31px;
  justify-self: end;
}

.content-node-empty-copy {
  display: grid;
  align-self: end;
  gap: 12px;
  min-width: 0;
}

.content-node-empty-label {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 650;
  line-height: 18px;
}

.content-node-primary-action {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 34px;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
}

.content-node-primary-action:hover {
  color: #fff;
}

.content-node-action-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
}

.content-node-preview-state,
.content-node-result {
  height: 100%;
  min-height: 0;
  padding: 28px 30px;
  overflow: hidden;
}

.content-node-result .lite-text-result {
  height: 100%;
}

.content-node-script.has-script-rows .content-node-surface,
.content-node-script.has-script-rows .lite-script-node-body {
  height: 100%;
  min-height: 0;
}

/* Script Studio: compact canvas summary + focused screenplay workspace. */
.content-node-script.script-node-modern {
  --script-accent: #f2f2f3;
  --script-accent-soft: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgb(31, 31, 31);
}

.content-node-script.script-node-modern::before {
  position: absolute;
  inset: 0 auto auto 18px;
  z-index: 3;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--script-accent), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.content-node-script.script-node-modern.selected,
.content-node-script.script-node-modern.multi-selected {
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26),
    0 20px 52px rgba(0, 0, 0, 0.46);
}

.content-node-script.script-node-modern.has-script-rows .lite-script-node-body {
  width: 100%;
  height: 100%;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 20%),
    rgba(9, 9, 11, 0.18);
}

.content-node-script.script-node-modern.has-script-rows .lite-script-table-wrap {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  background: rgba(15, 15, 17, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.content-node-script.script-node-modern.has-script-rows .lite-script-table-meta {
  min-height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.018);
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.content-node-script.script-node-modern.has-script-rows .lite-script-table-scroll {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: auto;
  scrollbar-color: rgba(255, 255, 255, 0.26) transparent;
  scrollbar-width: thin;
}

.content-node-script.script-node-modern.has-script-rows .lite-script-table {
  min-width: max-content;
  border-collapse: separate;
  border-spacing: 0;
}

.content-node-script.script-node-modern.has-script-rows .lite-script-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.055);
  padding: 8px 10px;
  background: #1c1c1f;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.content-node-script.script-node-modern.has-script-rows .lite-script-table td {
  max-width: 220px;
  border-color: rgba(255, 255, 255, 0.04);
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  line-height: 1.5;
  vertical-align: top;
}

.content-node-script.script-node-modern.has-script-rows .lite-script-table tbody tr {
  transition: background 140ms ease;
}

.content-node-script.script-node-modern.has-script-rows .lite-script-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.node-editor-script.script-editor-modern .script-preview-btn {
  min-height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 680;
}

.node-editor-script.script-editor-modern .generate-btn-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: #f2f2f3;
  color: #171411;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.script-node-overview {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 13px;
  width: 100%;
  height: 100%;
  padding: 18px;
  animation: script-studio-reveal 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.script-node-overview-head,
.script-editor-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.script-node-overview-title,
.script-editor-heading > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.script-node-overview-title > span,
.script-editor-heading > div > span {
  color: var(--script-accent, #f2f2f3);
  font-size: 8px;
  font-weight: 800;
  line-height: 11px;
  letter-spacing: 0.16em;
}

.script-node-overview-title > strong,
.script-editor-heading > div > strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 720;
  line-height: 20px;
}

.script-node-metrics {
  display: flex;
  align-items: center;
  gap: 5px;
}

.script-node-metrics > span,
.script-editor-state {
  min-height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 650;
  line-height: 14px;
  white-space: nowrap;
}

.script-node-metrics b {
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
}

.script-node-shot-list {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 0;
  overflow: hidden;
}

.script-node-shot {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 6px 8px 6px 6px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.script-node-shot:hover {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(2px);
}

.script-node-shot-index {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--script-accent-soft);
  color: var(--script-accent);
  font-size: 9px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.script-node-shot-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.script-node-shot-copy strong,
.script-node-shot-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.script-node-shot-copy strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 650;
  line-height: 15px;
}

.script-node-shot-copy small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  line-height: 12px;
}

.script-node-shot-duration {
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 680;
  font-variant-numeric: tabular-nums;
}

.script-node-workbench {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 11px 0 12px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 680;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.script-node-workbench:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.script-node-workbench svg,
.script-editor-primary svg,
.script-materialize-action svg,
.script-shot-lock svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.node-editor-script.script-editor-modern {
  --script-accent: #f2f2f3;
  display: grid;
  gap: 13px;
  width: min(430px, calc(100vw - 28px));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 15px;
  background: rgba(31, 31, 33, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(22px) saturate(1.1);
  animation: script-editor-enter 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.script-editor-state {
  color: rgba(255, 255, 255, 0.8);
}

.node-editor-script.script-editor-modern .editor-prompt-area {
  position: relative;
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(8, 8, 10, 0.36);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.node-editor-script.script-editor-modern .editor-prompt-area:focus-within {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.node-editor-script.script-editor-modern textarea {
  width: 100%;
  min-height: 118px;
  border: 0;
  padding: 13px 14px 28px;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: rgba(255, 255, 255, 0.87);
  font: inherit;
  font-size: 12px;
  line-height: 1.65;
}

.node-editor-script.script-editor-modern textarea::placeholder {
  color: rgba(255, 255, 255, 0.27);
}

.node-editor-script.script-editor-modern .char-count {
  position: absolute;
  right: 11px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 9px;
}

.node-editor-script.script-editor-modern .script-editor-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.node-editor-script.script-editor-modern .script-editor-controls,
.script-editor-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.node-editor-script.script-editor-modern .editor-model-pill,
.node-editor-script.script-editor-modern .lite-source-pill {
  min-height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  line-height: 15px;
}

.script-editor-secondary,
.script-editor-primary {
  min-height: 32px;
  border-radius: 8px;
  padding: 0 11px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.script-editor-secondary {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
}

.script-editor-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #f2f2f3;
  color: #171411;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.script-editor-primary:hover {
  background: #ffffff;
}

.script-materialize-action {
  display: grid;
  place-items: center;
}

.script-materialize-action svg {
  width: 14px;
  height: 14px;
}

.script-shot-lock span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.script-shot-lock input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.script-shot-lock input:checked + span {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  color: #f2f2f3;
}

.script-prompt-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.script-prompt-status > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.script-prompt-status.is-ready > span {
  background: #55d6a7;
  box-shadow: 0 0 0 3px rgba(85, 214, 167, 0.1);
}

html body #script-fullscreen-overlay {
  padding: 26px;
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(18px) saturate(0.86);
}

html body #script-fullscreen-overlay .script-fullscreen-panel {
  width: min(1480px, calc(100vw - 52px));
  height: min(900px, calc(100vh - 52px));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #1f1f21;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.62);
  overflow: hidden;
}

html body #script-fullscreen-overlay .script-fullscreen-head {
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.015);
}

html body #script-fullscreen-overlay .script-fullscreen-tabs {
  gap: 4px;
  width: fit-content;
  margin: 12px 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  padding: 3px;
  background: rgba(0, 0, 0, 0.22);
}

html body #script-fullscreen-overlay .script-fullscreen-tab {
  min-height: 31px;
  border: 0;
  border-radius: 6px;
  padding: 0 13px;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 680;
}

html body #script-fullscreen-overlay .script-fullscreen-tab.active {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

html body #script-fullscreen-overlay .script-fullscreen-body {
  padding: 14px 20px 20px;
}

html body #script-fullscreen-overlay .lite-script-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 11px;
  background: rgba(8, 8, 10, 0.28);
  overflow: hidden;
}

html body #script-fullscreen-overlay .lite-script-table-scroll {
  scrollbar-color: rgba(255, 255, 255, 0.26) transparent;
  scrollbar-width: thin;
}

html body #script-fullscreen-overlay .lite-script-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.06);
  padding: 9px 11px;
  background: #1d1d20;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.03em;
}

html body #script-fullscreen-overlay .lite-script-table td {
  border-color: rgba(255, 255, 255, 0.045);
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  line-height: 1.55;
}

html body #script-fullscreen-overlay .lite-script-table tbody tr {
  transition: background 140ms ease;
}

html body #script-fullscreen-overlay .lite-script-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

@keyframes script-studio-reveal {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes script-editor-enter {
  from { opacity: 0; transform: translateY(6px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .script-node-overview,
  .node-editor-script.script-editor-modern {
    animation: none;
  }
}

.content-node-source-badge,
.content-node-progress {
  position: absolute;
  top: 9px;
  z-index: 5;
  max-width: calc(100% - 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 4px 8px;
  background: rgba(10, 10, 12, 0.72);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-node-source-badge {
  left: 9px;
}

.content-node-progress {
  right: 9px;
  color: rgba(255, 255, 255, 0.76);
}

.content-node-toolbar {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 6;
  margin: 0;
  padding: 0;
}

.content-node-audio {
  --content-node-width: 300px;
  --content-node-height: 300px;
}

.content-node-audio .audio-upload-btn {
  min-height: 28px;
  border-radius: 7px;
  padding: 4px 10px;
  background: rgba(10, 10, 12, 0.62);
}

.content-node-audio .audio-content-wrap {
  display: grid;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 32px 34px 26px;
}

.content-node-audio .audio-content,
.content-node-audio .content-node-empty-state {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
}

.content-node-audio .content-node-empty-state {
  padding: 18px 6px 8px;
}

.content-node-audio .content-node-line-mark {
  margin-bottom: 22px;
}

.content-node-audio .audio-content {
  display: grid;
  align-content: center;
  border-radius: 8px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.2);
}

.content-node-audio .audio-side-btn.left {
  left: -11px;
}

.content-node-audio .audio-side-btn.right {
  right: -11px;
}
