@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --dw-canvas: #f6f7f2;
  --dw-surface: #ffffff;
  --dw-surface-warm: #fffaf0;
  --dw-ink: #161616;
  --dw-muted: #64645f;
  --dw-line: #d9d6ca;
  --dw-strong-line: #161616;
  --dw-chord: #e65f00;
  --dw-version: #087f8c;
  --dw-action: #1d4ed8;
  --dw-success: #2f8f46;
  --dw-warning: #d89900;
  --dw-danger: #c83a32;
  --dw-subtle-shadow: 0 8px 24px rgba(22, 22, 22, 0.06);
  --dw-modal-shadow: 0 24px 80px rgba(22, 22, 22, 0.18);

  --brutal-bg: #f8f3e8;
  --brutal-bg-accent: #ffd54f;
  --brutal-paper: #fffdf6;
  --brutal-paper-alt: #ff8a65;
  --brutal-panel: #fff176;
  --brutal-ink: #111111;
  --brutal-muted: #4b4b4b;
  --brutal-line: #111111;
  --brutal-shadow: 6px 6px 0 var(--brutal-line);
  --brutal-shadow-lg: 10px 10px 0 var(--brutal-line);
  --brutal-radius: 20px;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(246, 247, 242, 0.92) 54%),
    var(--dw-canvas);
  color: var(--dw-ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: 0;
}

body.song-editor-expanded {
  overflow: hidden;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.1rem 0.55rem;
  border-left: 3px solid var(--dw-version);
  background: rgba(8, 127, 140, 0.08);
  color: var(--dw-version);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.app-shell-main {
  padding-top: 1.1rem;
}

.app-shell-header {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--dw-line);
  box-shadow: 0 10px 28px rgba(22, 22, 22, 0.05);
  backdrop-filter: blur(10px);
}

.app-shell-header-inner {
  display: flex;
  align-items: center;
}

.app-brand-block {
  padding: 0.45rem 0.85rem;
  background: var(--dw-surface);
  border: 2px solid var(--dw-strong-line);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--dw-strong-line);
}

.app-brand-title {
  letter-spacing: 0;
  line-height: 1;
}

.app-brand-tag {
  color: var(--dw-muted);
  font-weight: 700;
}

.app-nav {
  row-gap: 0.6rem;
}

.hero-card {
  background: var(--dw-surface);
  border: 1px solid var(--dw-line);
  border-radius: 8px;
  box-shadow: var(--dw-subtle-shadow);
}

.soft-card {
  background: var(--dw-surface);
  border: 1px solid var(--dw-line);
  border-radius: 8px;
  box-shadow: none;
}

.dashboard-metric-card,
.dashboard-source-card {
  min-height: 150px;
}

.dashboard-metric-value {
  line-height: 1.05;
}

.dashboard-graph {
  width: 100%;
  min-height: 340px;
}

@media (max-width: 720px) {
  .app-shell-header {
    height: auto !important;
    min-height: 92px;
  }

  .app-shell-header-inner {
    height: auto !important;
    min-height: 92px;
    padding-block: 1rem;
  }
}

.app-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--dw-line);
  border-radius: 8px;
  background: var(--dw-surface);
  color: var(--dw-ink);
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease;
}

.app-nav-link:hover {
  border-color: var(--dw-action);
  background: rgba(29, 78, 216, 0.08);
  color: var(--dw-action);
}

.mantine-Paper-root,
.mantine-Button-root,
.mantine-ActionIcon-root,
.mantine-Badge-root,
.mantine-Input-input,
.mantine-Textarea-input,
.mantine-Select-input,
.mantine-MultiSelect-input,
.mantine-Modal-content,
.mantine-Modal-body,
.mantine-Modal-header {
  border-color: var(--dw-line);
}

.mantine-Button-root,
.mantine-ActionIcon-root,
.mantine-Input-input,
.mantine-Textarea-input,
.mantine-Select-input,
.mantine-MultiSelect-input,
.mantine-Modal-content {
  border-width: 1px;
  border-style: solid;
  border-radius: 8px;
  box-shadow: none;
}

.mantine-Button-root,
.mantine-ActionIcon-root {
  font-weight: 800;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease;
}

.mantine-Button-root:hover,
.mantine-ActionIcon-root:hover {
  border-color: var(--dw-action);
}

.mantine-Input-input,
.mantine-Textarea-input,
.mantine-Select-input,
.mantine-MultiSelect-input {
  background: var(--dw-surface);
  color: var(--dw-ink);
  font-weight: 600;
}

.mantine-Badge-root {
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
}

.mantine-Tabs-list {
  gap: 0.45rem;
}

.mantine-Tabs-tab {
  border: 1px solid var(--dw-line);
  border-radius: 8px;
  background: var(--dw-surface);
  box-shadow: none;
  color: var(--dw-ink);
  font-weight: 800;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease;
}

.mantine-Tabs-tab:hover {
  background: rgba(8, 127, 140, 0.08);
}

.mantine-Tabs-tab[data-active="true"] {
  border-color: var(--dw-version);
  background: rgba(8, 127, 140, 0.12);
  color: var(--dw-version);
}

.lyrics-content {
  display: block;
  max-width: 100%;
  max-height: 68vh;
  margin: 0;
  padding: 1rem;
  overflow-x: auto;
  overflow-y: auto;
  background: var(--dw-surface);
  border: 1px solid var(--dw-line);
  border-radius: 8px;
  color: var(--dw-ink);
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
  white-space: pre;
  word-break: normal;
  overflow-wrap: normal;
  font-kerning: none;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "kern" 0;
  tab-size: 4;
  scrollbar-width: thin;
}

.transpose-chart-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.5rem;
  max-width: 100%;
}

.transpose-chart-shell .lyrics-content {
  min-width: 0;
  width: 100%;
}

.structured-song-chart {
  white-space: normal;
}

.structured-song-section {
  margin-bottom: 1rem;
}

.structured-song-section:last-child {
  margin-bottom: 0;
}

.structured-song-section-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.45rem;
  padding: 0.15rem 0.55rem;
  border: 1px solid rgba(8, 127, 140, 0.36);
  border-radius: 999px;
  background: rgba(8, 127, 140, 0.1);
  color: var(--dw-version);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.structured-song-line {
  min-height: 1.65em;
  white-space: pre;
}

.song-editor-live-preview {
  border-top: 1px solid var(--dw-line);
  padding-top: 0.85rem;
}

.song-editor-preview-content {
  max-height: 24rem;
}

.transpose-chart-controls {
  position: sticky;
  top: 0.85rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 2.1rem;
  gap: 0.3rem;
  justify-items: center;
  padding: 0.25rem;
  border: 1px solid var(--dw-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--dw-subtle-shadow);
}

.transpose-chart-controls button {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--dw-chord);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transition:
    background 140ms ease,
    color 140ms ease;
}

.transpose-chart-controls button:hover {
  background: rgba(230, 95, 0, 0.12);
}

.transpose-chart-controls button:focus-visible {
  outline: 2px solid var(--dw-action);
  outline-offset: 2px;
}

.transpose-step-label {
  min-width: 1.75rem;
  color: var(--dw-muted);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.transpose-accidental-toggle {
  color: var(--dw-version);
}

.song-preview-card .lyrics-content {
  margin-top: 0.35rem;
}

.song-metadata-strip {
  padding: 0.65rem 0;
  border-top: 1px solid var(--dw-line);
  border-bottom: 1px solid var(--dw-line);
}

.song-metadata-strip .mantine-Badge-root {
  background: var(--dw-surface);
}

.song-versions-panel {
  max-width: 100%;
}

.song-version-list {
  max-height: 18rem;
  overflow-y: auto;
}

.song-version-row {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--dw-line);
}

.song-version-row:last-child {
  border-bottom: 0;
}

.song-editor-shell {
  position: relative;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--dw-surface);
  border: 1px solid var(--dw-line);
  border-radius: 8px;
  box-shadow: var(--dw-subtle-shadow);
}

.song-editor-toolbar {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 0.85rem;
  margin-bottom: 0.35rem;
  background: var(--dw-surface);
  border-bottom: 1px solid var(--dw-line);
}

.song-editor-toolbar-actions {
  justify-content: flex-end;
}

.song-editor-shortcuts {
  margin-bottom: 0.35rem;
}

.song-editor-close-button {
  display: none;
}

#song-content-input {
  width: 100%;
}

.song-lyrics-editor-input,
#song-content-input textarea,
#song-content-input .mantine-Textarea-input {
  min-height: 34rem;
  height: 34rem;
  padding: 1rem 1.05rem;
  overflow: auto;
  resize: vertical;
  background: #fffefb;
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
  white-space: pre;
  overflow-wrap: normal;
  word-break: normal;
  font-kerning: none;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "kern" 0;
  tab-size: 4;
}

.song-lyrics-editor-input::placeholder,
#song-content-input textarea::placeholder,
#song-content-input .mantine-Textarea-input::placeholder {
  font-family:
    "IBM Plex Mono",
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    monospace;
}

.song-editor-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(22, 22, 22, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}

.song-editor-backdrop.song-editor-backdrop-visible {
  opacity: 1;
  pointer-events: auto;
}

.song-editor-shell.song-editor-shell-expanded {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  z-index: 1000;
  width: min(1100px, calc(100vw - 2rem));
  height: calc(100vh - 2.4rem);
  margin-top: 0;
  padding: 1.1rem;
  transform: translateX(-50%);
  box-shadow: var(--dw-modal-shadow);
}

.song-editor-shell.song-editor-shell-expanded .song-editor-close-button {
  display: inline-flex;
}

.song-editor-shell.song-editor-shell-expanded .song-editor-toolbar {
  margin-bottom: 0.5rem;
}

.song-editor-shell.song-editor-shell-expanded .song-lyrics-editor-input,
.song-editor-shell.song-editor-shell-expanded #song-content-input textarea,
.song-editor-shell.song-editor-shell-expanded #song-content-input .mantine-Textarea-input {
  min-height: calc(100vh - 12.5rem);
  height: calc(100vh - 12.5rem);
  resize: none;
}

.perform-page-hero {
  position: relative;
  overflow: visible;
  border-left: 4px solid var(--dw-action);
}

.perform-session-select {
  min-width: min(100%, 320px);
}

.perform-session-summary {
  background: var(--dw-surface-warm);
  border-left: 4px solid var(--dw-version);
}

.perform-song-tabs {
  width: 100%;
}

.perform-song-tab-list {
  position: sticky;
  top: 0.65rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
  padding: 0.35rem 0 0.75rem;
  background: var(--dw-canvas);
  border-bottom: 1px solid var(--dw-line);
}

.perform-song-tab {
  flex: 0 1 172px;
  min-height: 70px;
  padding: 0.6rem 0.75rem;
  align-items: flex-start;
  text-align: left;
}

.perform-song-tab-index {
  color: var(--dw-version);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.perform-song-tab-title {
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.perform-song-tab-artist {
  color: var(--dw-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.perform-song-panel-wrap {
  padding-top: 1.3rem;
}

.perform-song-panel {
  gap: 1rem;
}

.perform-nav-controls {
  gap: 0.7rem;
}

.perform-nav-button {
  min-width: 8rem;
}

.perform-song-assignees:empty {
  display: none;
}

.perform-song-note {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--dw-line);
  border-left: 4px solid var(--dw-warning);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--dw-muted);
  font-weight: 700;
}

.perform-reference-link {
  text-decoration: none;
}

.perform-reference-badge {
  background: rgba(230, 95, 0, 0.12);
  color: var(--dw-chord);
}

.perform-lyrics-panel {
  position: relative;
  min-height: 72vh;
  background: var(--dw-surface);
  border: 1px solid var(--dw-line);
  border-radius: 8px;
  box-shadow: none;
}

.perform-lyrics-panel::before {
  display: none;
}

.perform-lyrics-panel .lyrics-content {
  max-height: none;
  min-height: 64vh;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.perform-lyrics-panel .transpose-chart-shell {
  min-height: 64vh;
}

.perform-lyrics-panel .transpose-chart-controls {
  top: 5.25rem;
}

.perform-lyrics-content {
  color: var(--dw-ink);
  font-size: 1.3rem;
  line-height: 1.8;
}

.song-pdf-object {
  width: 100%;
  min-height: 70vh;
  border: 1px solid var(--dw-line);
  border-radius: 8px;
  background: #ffffff;
}

.song-file-card {
  min-height: 100%;
}

.session-date-input {
  width: 100%;
}

.session-toolbar {
  flex: 1 1 560px;
}

.session-song-chip-list {
  flex: 1 1 420px;
  min-width: 0;
}

.session-song-token {
  background: rgba(8, 127, 140, 0.08);
  border: 1px solid rgba(8, 127, 140, 0.26);
  border-radius: 999px;
  box-shadow: none;
}

.event-song-assignment-card {
  background: rgba(8, 127, 140, 0.04);
}

.rehearsal-panel {
  border-left: 4px solid var(--dw-version);
}

.rehearsal-card {
  min-height: 100%;
}

.search-result-wrapper {
  cursor: pointer;
}

.search-result-main {
  flex: 1 1 auto;
  min-width: 0;
}

.search-result-card {
  transition:
    border-color 140ms ease,
    background 140ms ease;
}

.search-result-card:hover {
  border-color: var(--dw-action);
  background: rgba(29, 78, 216, 0.05);
}

.search-result-card-active {
  border-left: 4px solid var(--dw-action);
  background: rgba(29, 78, 216, 0.07);
}

.archive-scroll {
  padding-right: 0.5rem;
}

.archive-song-card {
  transition:
    border-color 140ms ease,
    background 140ms ease;
}

.archive-song-click-target {
  cursor: pointer;
}

.archive-song-card:hover {
  border-color: var(--dw-version);
  background: rgba(8, 127, 140, 0.05);
}

.archive-song-card-active {
  border-left: 4px solid var(--dw-version);
  background: rgba(8, 127, 140, 0.08);
}

.archive-song-cover {
  flex: 0 0 84px;
  border: 1px solid var(--dw-line);
  border-radius: 8px;
  background: var(--dw-surface-warm);
  overflow: hidden;
}

.archive-song-cover-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 0.5rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.archive-song-meta {
  flex: 1 1 auto;
  min-width: 0;
}

.archive-song-title {
  flex: 1 1 auto;
  min-width: 0;
}

.archive-author-filter {
  min-width: min(100%, 320px);
}

.archive-stat-card {
  min-height: 100%;
}

.archive-stats-graph {
  min-height: 360px;
}

.archive-usage-panel {
  min-height: 100%;
}

.archive-detail-title,
.archive-usage-stat-value {
  line-height: 1.1;
  word-break: break-word;
}

.archive-usage-stat-box {
  min-height: 100%;
}

.archive-usage-graph {
  min-height: 360px;
}

.archive-recent-usage-card {
  transition:
    border-color 140ms ease,
    background 140ms ease;
}

.archive-recent-usage-card:hover {
  border-color: var(--dw-version);
  background: rgba(8, 127, 140, 0.04);
}

.insights-page {
  position: relative;
  isolation: isolate;
}

.insights-page::before,
.insights-page::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 4px solid var(--brutal-line);
  pointer-events: none;
}

.insights-page::before {
  top: 12px;
  right: 12px;
  width: 112px;
  height: 112px;
  background: #7dd3fc;
  transform: rotate(8deg);
}

.insights-page::after {
  top: 320px;
  left: -18px;
  width: 82px;
  height: 82px;
  background: #f472b6;
  transform: rotate(-10deg);
}

.insights-page .section-kicker {
  display: inline-block;
  width: fit-content;
  padding: 0.15rem 0.55rem;
  border: 2px solid var(--brutal-line);
  background: #7dd3fc;
  color: var(--brutal-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.insights-page .hero-card {
  background: var(--brutal-panel);
  border: 4px solid var(--brutal-line);
  border-radius: var(--brutal-radius);
  box-shadow: var(--brutal-shadow-lg);
}

.insights-page .soft-card {
  background: var(--brutal-paper);
  border: 3px solid var(--brutal-line);
  border-radius: var(--brutal-radius);
  box-shadow: var(--brutal-shadow);
}

.insights-page .mantine-Button-root,
.insights-page .mantine-ActionIcon-root,
.insights-page .mantine-Input-input,
.insights-page .mantine-Textarea-input,
.insights-page .mantine-Select-input {
  border-width: 3px;
  border-color: var(--brutal-line);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--brutal-line);
}

.insights-page .mantine-Input-input,
.insights-page .mantine-Textarea-input,
.insights-page .mantine-Select-input {
  background: var(--brutal-paper);
  color: var(--brutal-ink);
  font-weight: 700;
}

.insights-page .mantine-Badge-root {
  border: 2px solid var(--brutal-line);
}

.insights-page .mantine-Button-root:hover,
.insights-page .mantine-ActionIcon-root:hover {
  background: #7dd3fc;
  color: var(--brutal-ink);
  box-shadow: 6px 6px 0 var(--brutal-line);
  transform: translate(-2px, -2px);
}

.insights-storyline {
  max-width: 78ch;
}

.insights-filter-controls {
  width: 100%;
}

.insights-filter-control {
  flex: 1 1 260px;
  min-width: min(100%, 260px);
}

.insights-spotlight-card {
  min-height: 100%;
}

.insights-spotlight-kicker {
  letter-spacing: 0;
  text-transform: uppercase;
}

.insights-spotlight-value {
  line-height: 1.05;
  word-break: break-word;
}

.insights-panel-intro {
  min-height: 3rem;
}

.insights-graph,
.insights-calendar-graph {
  min-height: 360px;
}

.insights-forgotten-list {
  align-items: stretch;
}

.insights-forgotten-card,
.insights-setlist-card {
  min-height: 100%;
}

.insights-song-focus-card {
  min-height: 100%;
}

.insights-song-stat-box {
  min-height: 100%;
}

.insights-song-calendar-graph {
  min-height: 220px;
}

.insights-setlist-song-card {
  transition:
    transform 120ms ease,
    box-shadow 120ms ease;
}

.insights-setlist-song-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--brutal-line);
}

.insights-setlist-song-cover {
  flex: 0 0 72px;
  border: 3px solid var(--brutal-line);
  background: #fff5b8;
  overflow: hidden;
}

.insights-setlist-song-cover-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.5rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.insights-setlist-song-meta {
  flex: 1 1 auto;
  min-width: 0;
}

.insights-setlist-song-title {
  min-width: 0;
}

.mantine-Modal-content,
.mantine-Modal-body {
  overflow: visible;
}

@media (max-width: 48em) {
  .song-editor-shell {
    padding: 0.8rem;
  }

  .song-editor-toolbar {
    padding-bottom: 0.65rem;
  }

  .song-editor-toolbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .song-lyrics-editor-input,
  #song-content-input textarea,
  #song-content-input .mantine-Textarea-input {
    min-height: 26rem;
    height: 26rem;
    font-size: 0.92rem;
  }

  .song-editor-shell.song-editor-shell-expanded {
    top: 0.75rem;
    width: calc(100vw - 1rem);
    height: calc(100vh - 1.5rem);
  }

  .song-editor-shell.song-editor-shell-expanded .song-lyrics-editor-input,
  .song-editor-shell.song-editor-shell-expanded #song-content-input textarea,
  .song-editor-shell.song-editor-shell-expanded #song-content-input .mantine-Textarea-input {
    min-height: calc(100vh - 15rem);
    height: calc(100vh - 15rem);
  }
}

@media (max-width: 768px) {
  .app-brand-block {
    width: 100%;
  }

  .app-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .lyrics-content {
    font-size: 0.95rem;
  }

  .transpose-chart-shell {
    gap: 0.35rem;
  }

  .transpose-chart-controls {
    top: 0.5rem;
    grid-template-columns: 1.9rem;
  }

  .transpose-chart-controls button,
  .transpose-step-label {
    width: 1.6rem;
    height: 1.6rem;
    min-width: 1.6rem;
  }

  .insights-filter-control {
    min-width: 100%;
  }

  .insights-page::before,
  .insights-page::after {
    display: none;
  }

  .perform-song-tab {
    flex-basis: 100%;
  }

  .perform-song-tab-list {
    position: static;
  }

  .perform-lyrics-panel {
    min-height: 58vh;
  }

  .perform-lyrics-content {
    min-height: 50vh;
    font-size: 1.1rem;
  }

  .perform-lyrics-panel .transpose-chart-shell {
    min-height: 50vh;
  }

  .perform-lyrics-panel .transpose-chart-controls {
    top: 0.5rem;
  }
}
