:root {
  --bg: #dbe5f2;
  --surface: #ffffff;
  --surface-2: #f3f6fb;
  --surface-3: #eef3fa;
  --border: #c9d4e3;
  --border-strong: #b8c5d8;
  --text: #1f2937;
  --muted: #607086;
  --primary:   #2f366f;
  --primary-2: #3b467f;
  --primary-3: #4d5a98;
  --gold-1: #f7e08a;
  --gold-2: #e7b73e;
  --gold-text: #5b4100;
  --main-note: #5b5ce6;
  --alt-note: #2f8f73;
  --active: #f28c28;
  --shadow-lg: 0 18px 42px rgba(15, 23, 42, 0.10), 0 6px 16px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 6px 14px rgba(15, 23, 42, 0.06);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --ui-indigo-deep:  #24305e;
  --ui-indigo:       #2f3d73;
  --ui-indigo-soft:  #415285;
  --ui-teal:         #2f6676;
  --ui-teal-soft:    #3b7b8d;
  --ui-border-indigo:#4d5a84;
  --ui-tab:          #e4ebf1;
  --ui-tab-2:        #dbe4ec;
  --ui-tab-active:   #f6f1e6;

  /* feel groove colors */
  --feel-swing:    #b8871f;
  --feel-shuffle:  #de6b2d;
  --feel-straight: #2f7de1;
  --feel-waltz:    #6f63d9;
  --feel-ballad:   #c05a7a;
  --feel-calypso:  #ef5b5b;
  --feel-reggae:   #4aa84f;
  --feel-bossa:    #1f9a8a;
  --feel-country:  #8a6236;
  --feel-funk:     #c44060;
  --feel-march:    #888888;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(180deg, #dbe5f2 0%, #d3dfef 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.45;
  animation: pageFadeIn 420ms ease-out;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

button,
select,
input {
  font: inherit;
}

.card {
  width: min(1360px, 100%);
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

/* Header / banner */
.header.bannerHeader {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 180px;
  padding: 18px 32px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 40%, #1a3a4a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14), 0 8px 20px rgba(15, 23, 42, 0.08);
  animation: heroRise 520ms ease-out both;
}

.bannerHeader > * {
  position: relative;
  z-index: 2;
}

.bannerHeader .strings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bannerHeader .string {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06), transparent);
}

.bannerHeader .string:nth-child(1) { top: 30%; }
.bannerHeader .string:nth-child(2) { top: 45%; }
.bannerHeader .string:nth-child(3) { top: 60%; }
.bannerHeader .string:nth-child(4) { top: 75%; }

.bannerHeader .fret-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 210, 100, 0.25);
}

.bannerHeader .fret-dot:nth-child(5)  { left: 15%; width: 10px; height: 10px; background: rgba(255, 210, 100, 0.3); }
.bannerHeader .fret-dot:nth-child(6)  { left: 28%; }
.bannerHeader .fret-dot:nth-child(7)  { left: 41%; }
.bannerHeader .fret-dot:nth-child(8)  { left: 54%; width: 10px; height: 10px; background: rgba(100, 210, 220, 0.3); }
.bannerHeader .fret-dot:nth-child(9)  { left: 67%; }
.bannerHeader .fret-dot:nth-child(10) { left: 80%; }

.bannerHeader .glow {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(100, 180, 220, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.bannerHeader .circle-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 210, 100, 0.12);
  box-shadow: inset 0 0 60px rgba(255, 210, 100, 0.05);
  z-index: 1;
  pointer-events: none;
}

.bannerHeader .circle-deco::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(100, 200, 220, 0.1);
}

.bannerHeader .sound-hole {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 210, 100, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.bannerHeader .sound-hole::before {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 210, 100, 0.15);
}

.bannerHeader .note {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

.bannerHeader .note-1 { width: 120px; height: 120px; background: #f0c060; top: -40px; right: 200px; }
.bannerHeader .note-2 { width: 60px; height: 60px; background: #60c0e0; bottom: -20px; right: 350px; }
.bannerHeader .note-3 { width: 40px; height: 40px; background: #a080e0; top: 10px; right: 420px; }

.bannerHeader .icon {
  width: 140px;
  height: 140px;
  flex: 0 0 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.bannerHeader .icon svg {
  width: 140px;
  height: 140px;
}

.bannerHeader .brandText {
  min-width: 0;
  max-width: 700px;
}

.bannerHeader .brandTitle {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.bannerHeader .brandTitle span {
  color: #f0c060;
}

.bannerHeader .brandTag {
  margin-top: 8px;
  max-width: 560px;
  font-family: "Nunito", Inter, system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(200, 225, 240, 0.82);
}

/* Main layout */
.mainLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 284px;
  gap: 22px;
  padding: 22px;
  align-items: start;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(201, 212, 227, 0.9);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08), 0 6px 16px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.leftCol {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rightCol {
  width: 284px;
  min-width: 284px;
  align-self: start;
}

/* Display area */
.lessonIntro {
  background: linear-gradient(180deg, #fdfcf8 0%, #f6f1e6 100%);
  border: 1px solid #e7dcc4;
  border-radius: 16px;
  margin-bottom: 6px;
  padding: 18px 0 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation: sectionRise 560ms ease-out both;
}

.display,
.keySig,
.scaleHelp {
  background: transparent;
  border: 0;
  text-align: center;
}

.display {
  padding: 0 22px 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 3.2vw, 2.55rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2f366f;
  text-wrap: balance;
}

.display::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(231, 183, 62, 0.2), rgba(231, 183, 62, 0.9), rgba(47, 102, 118, 0.25));
}

.keySig {
  margin-top: 0;
  padding: 6px 26px 8px;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  color: #4a5970;
}

.scaleHelp {
  padding: 2px 34px 0;
  font-size: 0.93rem;
  line-height: 1.62;
  color: #665f52;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Chord grid */
.chordGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  padding: 22px;
  background: linear-gradient(180deg, #f5f8fc 0%, #eef3f8 100%);
  border: 1px solid #d7e0ea;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  animation: sectionRise 640ms ease-out both;
}

.chordContainer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 6px;
}

.chordCard {
  min-height: 126px;
  padding: 0;
  border: 1px solid #d6dee9;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.chordCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.10), 0 6px 12px rgba(15, 23, 42, 0.05);
  border-color: #c4d1e3;
}

.chordCard .degreeLabel {
  position: absolute;
  top: 9px;
  left: 10px;
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(47, 54, 111, 0.92), rgba(65, 82, 133, 0.82));
  backdrop-filter: blur(3px) saturate(1.1);
  -webkit-backdrop-filter: blur(3px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 2;
  letter-spacing: 0.04em;
}

.chordTitleRow {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 8px;
  padding-top: 24px;
}

.chordName {
  display: block;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #23345b;
  margin-top: 4px;
}

.chordFrets {
  margin-top: 6px;
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8799;
}

.chordNotes {
  margin-top: 6px;
  padding: 0 10px 14px;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #4a5672;
}

.chordNotes .chordRoot {
  color: #b88316 !important;
  font-weight: 700;
}

.chordCard img,
.chordCard svg,
.chordCard canvas {
  display: block;
  margin: 0 auto;
  align-self: center;
}

.chordCard.active,
.chordCard.isActive,
.chordCard.selected {
  border-color: #c8b37e;
  background: linear-gradient(180deg, #fffdf7 0%, #faf5e7 100%);
  box-shadow: 0 14px 28px rgba(91, 65, 0, 0.10);
}

.voicingRow {
  width: 100%;
  text-align: center;
  margin-top: 2px;
  font-size: 0.84rem;
}

.voicingLink {
  color: #5f6e86;
  text-decoration: none;
  cursor: pointer;
  padding: 2px 2px;
  font-weight: 600;
}

.voicingLink:hover {
  text-decoration: underline;
}

.voicingLink.active {
  color: #2f6676;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.voicingSep {
  color: var(--border-strong);
  opacity: 0.7;
  margin: 0 3px;
}

.chordSvgHolder {
  display: flex;
  justify-content: center;
  margin: 8px 0 4px 0;
}

/* Tabs and panels */
.tabSection {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tabs {
  display: flex;
  width: 100%;
  gap: 0;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.tabs button {
  flex: 1 1 0;
  width: 100%;
  min-height: 46px;
  padding: 12px 12px 11px;
  margin: 0;
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 12px 12px 0 0;

  background: linear-gradient(180deg, var(--ui-tab) 0%, var(--ui-tab-2) 100%);
  color: #314057;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.tabs button + button {
  margin-left: -1px;
}

.tabs button:hover {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--ui-tab) 86%, white) 0%,
    color-mix(in srgb, var(--ui-tab-2) 92%, white) 100%
  );
  color: #243552;
  box-shadow: none;
  transform: translateY(-1px);
}

.tabs button.active {
  background: var(--ui-tab-active);
  color: var(--ui-indigo-deep);
  border-color: #d6c8a8;
  border-bottom-color: var(--ui-tab-active);
}

.panel {
  padding: 14px;
  margin: 0;
  background: var(--ui-tab-active);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  display: none;
  transform-origin: top center;
}

.panel.active {
  display: block;
  animation: panelReveal 220ms ease-out;
}

/* Pattern / tip row */
.patternTopRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 12px;
  align-items: stretch;
  margin-bottom: 12px;
}

.tabStack {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

pre.tab {
  margin: 0;
  min-height: 118px;
  height: 100%;
}

.tipBox {
  min-height: 118px;
  height: 100%;
}

.tab {
  min-height: 118px;
  padding: 14px 20px;
  border: 1px solid #46519a;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--ui-indigo-deep) 0%,
    var(--ui-indigo-soft) 48%,
    var(--ui-teal) 100%
  );
  border: 1px solid var(--ui-border-indigo);
  color: #f8fafc;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.97rem;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}


.tipBox {
  min-height: 118px;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid #e8cf96;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff8e8 0%, #fdf0cf 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #5b4630;
  line-height: 1.5;
  font-size: 0.92rem;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.tipBox:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(91, 70, 48, 0.08);
}

.tipNavRow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.tipNav {
  width: auto;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(139, 94, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
  font-size: 0.86rem;
  font-weight: 700;
  color: #8b5e00;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.tipNav:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(139, 94, 0, 0.32);
  text-decoration: none;
  transform: none;
  box-shadow: none;
}

.tipText {
  min-width: 0;
}

.boxNotice {
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid #e8cf96;
  border-radius: 10px;
  background: #fff7df;
  color: #7a5600;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Fretboard */
.fretboardWrap {
  padding: 14px;
  border: 1px solid #d6deea;
  border-radius: 14px;
  background: linear-gradient(180deg, #fcfdff 0%, #f3f7fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fretboard {
  display: grid;
  gap: 5px;
  width: 100%;
}

.fretHeader,
.stringLabel,
.fret {
  border-radius: 8px;
  min-width: 0;
}

.fretHeader {
  min-height: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eef3f8 0%, #e3eaf3 100%);
  border: 1px solid #c8d4e2;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4d5e74;
}

.fretHeader.marker {
  background: linear-gradient(180deg, #e2e8ff 0%, #d6def8 100%);
  color: #39459b;
}

.fretHeader.markerDouble {
  background: linear-gradient(180deg, #ece4fc 0%, #e2d8f8 100%);
  color: #6a3db0;
}

.stringLabel {
  min-height: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f5f8fc 0%, #ecf1f7 100%);
  border: 1px solid #cfd9e5;
  font-size: 0.84rem;
  font-weight: 760;
  color: #405067;
  letter-spacing: 0.04em;
}

.fret {
  min-height: 28px;
  border: 1px solid #d8e0ea;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 2px 1px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fret:hover,
.fret:focus-visible {
  border-color: #8ba8cf;
  box-shadow: 0 0 0 2px rgba(98, 140, 193, 0.18);
}

.fret[data-note]:hover::after,
.fret[data-note]:focus-visible::after {
  content: attr(data-note);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 4px 7px;
  border-radius: 8px;
  background: rgba(31, 45, 79, 0.94);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  pointer-events: none;
  z-index: 4;
}

.fret.stringShade {
  background: linear-gradient(180deg, #f7fbff 0%, #eff5fb 100%);
}

.fret.scale {
  background: linear-gradient(180deg, #e6ebff 0%, #d6def8 100%);
  border-color: #bfc9e8;
}

.fret.alt {
  background: linear-gradient(180deg, #e0f4ed 0%, #cfe8de 100%);
  border-color: #afd0c2;
}

.fret.root {
  background: linear-gradient(180deg, #f7e7a6 0%, #e7b73e 100%) !important;
  border-color: #c89a31 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.fret.active,
.fret.chordTone {
  background: linear-gradient(180deg, #f7c997 0%, #ef8f37 100%) !important;
  border-color: #d97a22 !important;
  color: #5c2200;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55) inset;
  transform: scale(1.03);
}

.noteName {
  font-size: 0.7rem;
  font-weight: 760;
  line-height: 1;
}

.solfegeText {
  font-size: 0.58rem;
  color: #6f7d90;
  line-height: 1;
}

.legend {
  margin-top: 12px;
  padding: 0 4px;
  font-size: 0.87rem;
  line-height: 1.55;
  color: #66768b;
}

/* Right column controls */
.controlsVertical {
  width: 100%;
  padding: 12px;
  border: 1px solid #d8dfeb;
  border-radius: 14px;
  background: linear-gradient(180deg, #f9fbfd 0%, #eef3f8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: sectionRise 720ms ease-out both;
}

.controlSection {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.controlSection + .controlSection {
  padding-top: 8px;
  border-top: 1px solid rgba(77, 90, 132, 0.12);
}

.sectionEyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a87416;
}

.navRow,
.controlsRow,
.tempoRow {
  display: grid;
  gap: 6px;
}

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

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

.tempoRow {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.tempoLabel {
  font-size: 0.82rem;
  font-weight: 760;
  color: #46576d;
}

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

select,
input[type="number"],
button {
  width: 100%;
  min-height: 38px;
  border-radius: 10px;
  font: inherit;
}

select,
input[type="number"] {
  border: 1px solid #c8d3e1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  color: var(--text);
  padding: 0 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

button {
  border: 1px solid #cbd6e3;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  color: var(--text);
  padding: 7px 10px;
  font-weight: 680;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

button:focus-visible,
select:focus-visible,
input:focus-visible,
.voicingLink:focus-visible,
.chordCard:focus-visible {
  outline: 3px solid rgba(231, 183, 62, 0.9);
  outline-offset: 3px;
}

.tabs button:focus-visible {
  outline-offset: 2px;
}

.tipNav:focus-visible {
  outline-offset: 2px;
}

button.primary {
  background: linear-gradient(
    135deg,
    var(--ui-indigo) 0%,
    var(--ui-indigo-soft) 42%,
    var(--ui-teal) 100%
  );
  border: 1px solid var(--ui-border-indigo);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
button.primary:hover {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--ui-indigo) 88%, white) 0%,
    color-mix(in srgb, var(--ui-indigo-soft) 88%, white) 42%,
    var(--ui-teal-soft) 100%
  );
}

#playAscending {
   background: linear-gradient(
    135deg,
    var(--ui-indigo-deep) 0%,
    var(--ui-indigo-soft) 48%,
    var(--ui-teal) 100%
  );
  border: 1px solid var(--ui-border-indigo);
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#playAscending:hover {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--ui-indigo-deep) 85%, white) 0%,
    color-mix(in srgb, var(--ui-indigo-soft) 85%, white) 48%,
    color-mix(in srgb, var(--ui-teal) 60%, white) 100%
  );
}

#playDescending {
  background: linear-gradient(
    135deg,
    var(--ui-teal) 0%,
    var(--ui-indigo-soft) 48%,
    var(--ui-indigo-deep) 100%
  );
  border: 1px solid var(--ui-border-indigo);
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#playDescending:hover {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--ui-teal) 60%, white) 0%,
    color-mix(in srgb, var(--ui-indigo-soft) 85%, white) 52%,
    color-mix(in srgb, var(--ui-indigo-deep) 85%, white) 100%
  );
}

button.secondary {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  color: #405368;
}

.progBtn {
  text-align: left;
  padding: 8px 10px 9px;
  border-radius: 10px;
  line-height: 1.2;
  min-height: 0;
  font-size: 0.9rem;
}

.progBtn span {
  display: inline-block;
  margin-top: 3px;
  line-height: 1.28;
  font-size: 0.66rem !important;
  font-weight: 600 !important;
  opacity: 0.88;
}

button.gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--gold-text);
  border-color: transparent;
}

button.activeProg {
  outline: 2px solid rgba(81, 70, 216, 0.18);
  border-color: #a6b5ff;
}

.sidebarHeading {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f6676;
  text-align: left;
}

.sidebarHelp {
  margin-top: 0;
  font-size: 0.89rem;
  line-height: 1.58;
  color: #607086;
}

.progressionSection .controlsRow {
  gap: 8px;
}

.progressionGrid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.siteFooter {
  width: min(1360px, 96vw);
  margin: 22px auto 0;
  padding: 18px 32px 28px;
  text-align: center;
  color: #5b6b80;
  font-size: 0.92rem;
  line-height: 1.6;
  animation: sectionRise 840ms ease-out both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.siteFooter .footerTitle,
.siteFooter .footerText, 
.siteFooter .footerContact,
.siteFooter .footerMeta {
  text-align: center;
}

.siteFooter .footerTitle {
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.siteFooter .footerText {
  max-width: 900px;
  margin: 0 auto 10px;
  line-height: 1.7;
  text-align: center;
}

.siteFooter .footerContact {
  margin-bottom: 8px;
  color: #4b5a6e;
}

.siteFooter .footerMeta {
  font-size: 0.88rem;
  color: #6b7a8f;
}

/* Responsive */
@media (max-width: 1100px) {
  .patternTopRow {
    grid-template-columns: 1fr;
  }

  .bannerHeader .sound-hole,
  .bannerHeader .circle-deco,
  .bannerHeader .note {
    opacity: 0.6;
  }
}

@media (max-width: 860px) {
  body {
    padding: 10px;
  }

  .card {
    width: 100%;
  }

  .header.bannerHeader {
    min-height: 160px;
    padding: 16px 18px;
    gap: 18px;
    border-radius: 16px;
  }

  .bannerHeader .icon {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    margin-right: 0;
  }

  .bannerHeader .icon svg {
    width: 88px;
    height: 88px;
  }

  .bannerHeader .brandTitle {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .bannerHeader .brandTag {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 480px;
  }

  .mainLayout {
    grid-template-columns: minmax(0, 1fr) 272px;
    gap: 18px;
    padding: 18px;
    margin-top: 13px;
    border-radius: 16px;
  }

  .rightCol {
    width: 272px;
    min-width: 272px;
  }

  .controlsVertical {
    padding: 16px;
    gap: 12px;
  }
}

@media (max-width: 700px) {
  body {
    padding: 6px;
  }

  .card {
    width: 100%;
  }

  .header.bannerHeader {
    min-height: 148px;
    padding: 16px 14px;
    gap: 14px;
    align-items: flex-start;
    border-radius: 14px;
  }

  .bannerHeader .icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    margin-top: 2px;
  }

  .bannerHeader .icon svg {
    width: 68px;
    height: 68px;
  }

  .bannerHeader .brandTitle {
    font-size: 1.5rem;
    line-height: 1.06;
  }

  .bannerHeader .brandTag {
    margin-top: 6px;
    font-size: 0.84rem;
    line-height: 1.42;
    max-width: none;
  }

  .bannerHeader .circle-deco,
  .bannerHeader .sound-hole,
  .bannerHeader .note-2,
  .bannerHeader .note-3 {
    display: none;
  }

  .mainLayout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px;
    margin-top: 11px;
    border-radius: 14px;
  }

  .leftCol {
    gap: 14px;
  }

  .rightCol {
    width: 100%;
    min-width: 0;
    order: 2;
  }

  .display {
    font-size: 1.55rem;
    padding: 0 14px 8px;
  }

  .keySig {
    padding: 4px 14px 10px;
    font-size: 0.95rem;
  }

  .scaleHelp {
    padding: 0 16px 4px;
    font-size: 0.88rem;
  }

  .chordGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
    gap: 12px;
  }

  .chordName {
    font-size: 1.04rem;
  }

  .chordFrets,
  .chordNotes {
    font-size: 0.7rem;
  }

  .chordCard {
    min-height: 120px;
    border-radius: 14px;
  }

  .tabs {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .tabs button {
    flex: 1 1 0;
    width: auto;
    min-height: 42px;
    padding: 10px 8px 9px;
    font-size: 0.82rem;
    line-height: 1.15;
    border-radius: 12px 12px 0 0;
  }

  .tabs button + button {
    margin-left: 0;
  }

  .patternTopRow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tab {
    min-height: 0;
    padding: 12px 13px;
    font-size: 0.84rem;
    line-height: 1.45;
    border-radius: 12px;
  }

  .tipBox {
    min-height: 0;
    padding: 11px 12px;
    font-size: 0.88rem;
    border-radius: 12px;
  }

  .tipNavRow {
    gap: 8px;
  }

  .tipNav {
    min-height: 28px;
    padding: 4px 9px;
    font-size: 0.79rem;
  }

  .fretboardWrap {
    padding: 10px;
    overflow-x: auto;
    border-radius: 14px;
  }

  .fretboard {
    width: max-content;
    min-width: 540px;
  }

  .fretHeader,
  .stringLabel,
  .fret {
    border-radius: 10px;
  }

  .noteName {
    font-size: 0.66rem;
  }

  .solfegeText {
    font-size: 0.54rem;
  }

  .legend,
  .sidebarHelp,
  .footerMeta {
    font-size: 0.84rem;
  }

  .controlsVertical {
    padding: 14px;
    border-radius: 14px;
  }

  .controlSection {
    gap: 9px;
  }

  .controlSection + .controlSection {
    padding-top: 12px;
  }

  .sectionEyebrow,
  .sidebarHeading {
    font-size: 0.74rem;
  }

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

  .tempoRow {
    grid-template-columns: 72px 1fr;
  }

  .progBtn {
    padding: 11px 12px 12px;
    border-radius: 12px;
  }

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

  .siteFooter {
    margin-top: 18px;
    padding: 16px 18px 24px;
  }
}

@media (max-width: 520px) {
  .header.bannerHeader {
    min-height: 0;
    padding: 14px 12px;
    gap: 12px;
  }

  .bannerHeader .brandTitle {
    font-size: 1.34rem;
  }

  .bannerHeader .brandTag {
    font-size: 0.8rem;
  }

  .lessonIntro {
    padding: 16px 0 16px;
  }

  .display {
    font-size: 1.42rem;
  }

  .chordGrid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
  }

  .chordCard {
    min-height: 114px;
  }

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

  .chordTitleRow {
    padding-top: 16px;
    margin-bottom: 6px;
  }

  .chordName {
    font-size: 0.98rem;
  }

  .fretboard {
    min-width: 510px;
  }

  .noteName {
    font-size: 0.62rem;
  }

  .solfegeText {
    font-size: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.draftLabLink {
  display: inline-flex;
  align-items: center;
}

.expansionPage .card {
  overflow: visible;
}

.draftCard {
  margin-bottom: 18px;
  position: relative;
  isolation: isolate;
}

.labHeader {
  justify-content: space-between;
  gap: 18px;
}

.labHeaderActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 160px;
  position: relative;
  z-index: 2;
}

.labNavLink {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(232, 239, 250, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.labNavLink:hover,
.labNavLink:focus-visible {
  color: #ffffff;
  text-decoration: none;
}

.labBadge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(240, 192, 96, 0.16);
  border: 1px solid rgba(240, 192, 96, 0.36);
  color: #ffe7a4;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.songSectionTitle {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.44rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #2f3d73;
}

.labLayout {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(201, 212, 227, 0.9);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08), 0 6px 16px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.labHero {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.labHeroCopy,
.labStatusPanel,
.labSection {
  position: relative;
  z-index: 40;
  pointer-events: auto;
  background: linear-gradient(180deg, rgba(255, 254, 249, 0.99) 0%, rgba(247, 242, 231, 0.96) 100%);
  border: 1px solid #e7dec9;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.labHeroCopy {
  padding: 24px 24px 22px;
}

.labHeroCopy h1,
.labSectionHeader h2 {
  margin: 4px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #25314f;
}

.labHeroCopy p,
.labSectionHeader p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.52;
  color: #655c4e;
  max-width: 780px;
}

.labDebugRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.labDebugBadge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 248, 220, 0.92);
  border: 1px solid rgba(240, 192, 96, 0.55);
  color: #4f3a06;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.labActionStatus {
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(47, 102, 118, 0.08);
  border: 1px solid rgba(47, 102, 118, 0.16);
  color: #335164;
  font-size: 0.79rem;
  font-weight: 700;
}

.labStatusPanel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: linear-gradient(180deg, #f9fbfd 0%, #eef3f8 100%);
  border-color: #d8dfeb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.labStatusCard {
  position: relative;
  overflow: hidden;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid #cbd6e3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.labStatusCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(220, 171, 54, 0.92) 0%, rgba(237, 191, 82, 0.88) 50%, rgba(244, 215, 130, 0.84) 100%);
  opacity: 1;
}

.labStatusCard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 36%);
  opacity: 0;
  transition: opacity 0.14s ease;
  pointer-events: none;
}

.labStatusCard[data-level="beginner"]::before {
  background: linear-gradient(90deg, rgba(73, 139, 88, 0.95) 0%, rgba(101, 177, 115, 0.9) 100%);
}

.labStatusCard[data-level="intermediate"]::before {
  background: linear-gradient(90deg, rgba(70, 98, 166, 0.95) 0%, rgba(107, 139, 206, 0.9) 52%, rgba(136, 171, 222, 0.84) 100%);
}

#patternJumpBtn::before {
  background: linear-gradient(90deg, rgba(92, 163, 149, 0.95) 0%, rgba(126, 195, 171, 0.9) 100%);
}

.labStatusCardButton {
  appearance: none;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: transform 0.14s ease, border-color 0.14s ease, background 0.14s ease, box-shadow 0.14s ease;
}

.labStatusCardButton:hover,
.labStatusCardButton:focus-visible {
  transform: translateY(-1px);
  border-color: #c8d3e1;
  box-shadow: 0 10px 20px rgba(31, 45, 79, 0.08);
}

.labStatusCardButton.active {
  border-color: var(--ui-border-indigo);
  background:
    linear-gradient(
      135deg,
      var(--ui-indigo-deep) 0%,
      var(--ui-indigo-soft) 48%,
      var(--ui-teal) 100%
    );
  box-shadow: 0 14px 28px rgba(31, 45, 79, 0.16);
}

.labStatusCardButton.active::before {
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 14px 14px 999px 999px;
  background: linear-gradient(90deg, rgba(241, 191, 66, 1) 0%, rgba(232, 177, 53, 0.98) 52%, rgba(247, 216, 126, 0.92) 100%);
  box-shadow: 0 0 18px rgba(223, 181, 70, 0.26);
}

.labStatusCardButton[data-level="beginner"].active::before {
  background: linear-gradient(90deg, rgba(101, 185, 110, 1) 0%, rgba(79, 165, 95, 0.98) 46%, rgba(160, 223, 155, 0.9) 100%);
}

.labStatusCardButton[data-level="intermediate"].active::before {
  background: linear-gradient(90deg, rgba(103, 142, 223, 1) 0%, rgba(78, 117, 198, 0.98) 50%, rgba(164, 193, 241, 0.9) 100%);
}

#patternJumpBtn.active::before {
  background: linear-gradient(90deg, rgba(117, 199, 170, 1) 0%, rgba(86, 172, 146, 0.98) 100%);
}

.labStatusCardButton.active::after {
  opacity: 1;
}

.labStatusValue {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #25314f;
  position: relative;
  z-index: 1;
}

.labStatusLabel {
  margin-top: 0;
  font-size: 0.84rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #5c6780;
  position: relative;
  z-index: 1;
}

.labStatusCardButton.active .labStatusValue {
  color: #f8fafc;
}

.labStatusCardButton.active .labStatusLabel {
  color: rgba(241, 247, 252, 0.86);
}

.labSection {
  padding: 18px;
}

.labSectionHeader {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.genreSummary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.genreSummaryCard,
.songBoard,
.songCard,
.patternCard,
.ideaCard {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #d6dee9;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
}

.genreSummaryCard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 5px 11px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 50;
  pointer-events: auto;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.genreToneall {
  background: linear-gradient(180deg, #fffef9 0%, #f5efe2 100%);
}

.genreTonePop {
  background: linear-gradient(180deg, #fff8f7 0%, #f9e7e4 100%);
}

.genreToneRock {
  background: linear-gradient(180deg, #f8faff 0%, #e9eef9 100%);
}

.genreToneCountry {
  background: linear-gradient(180deg, #fffbf3 0%, #f4ead5 100%);
}

.genreToneBlues {
  background: linear-gradient(180deg, #f7fbff 0%, #e3edf7 100%);
}

.genreToneJazz {
  background: linear-gradient(180deg, #f7fcfb 0%, #e4f1ec 100%);
}

.genreToneReggae {
  background: linear-gradient(180deg, #f7fcf6 0%, #e4f1de 100%);
}

.genreToneTraditional {
  background: linear-gradient(180deg, #fffdf6 0%, #efe7d5 100%);
}

.genreSummaryCard:hover,
.genreSummaryCard:focus-visible {
  transform: translateY(-3px);
  border-color: #c4d1e3;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.10), 0 6px 12px rgba(15, 23, 42, 0.05);
}

.genreSummaryCard.active {
  border-color: #d4a54f;
  background: linear-gradient(180deg, #fffef9 0%, #f6eedf 100%);
  box-shadow: 0 14px 28px rgba(202, 153, 55, 0.14), 0 4px 10px rgba(15, 23, 42, 0.04);
}

.genreSummaryCard.active .genreSummaryTop h3 {
  color: #8f6410;
}

.genreSummaryTop {
  display: block;
}

.genreSummaryTop h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #263250;
}
.songDecade,
.songCount,
.patternTempo {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5d6a7d;
}
.genreSummaryCard p,
.songNote,
.patternFeel,
.ideaCard p {
  margin: 0;
  font-size: .81rem;
  line-height: 1.55;
  color: #5d5d58;
}

.songControls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
  align-items: end;
}

.songFilter {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #4a5970;
  letter-spacing: 0.02em;
}

.songFilter select {
  min-height: 32px;
  padding: 0 8px;
  border: 1px solid #c9d4e3;
  border-radius: 9px;
  background: #fff;
  font: inherit;
  font-size: 0.8rem;
  color: #5f6f85;
  position: relative;
  z-index: 50;
  pointer-events: auto;
}

.songFilter input {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #c9d4e3;
  border-radius: 9px;
  background: #fff;
  font: inherit;
  font-size: 0.8rem;
  color: #5f6f85;
}

.songFilter input::placeholder {
  color: #8a97aa;
}

.songFilter input:focus {
  outline: none;
  border-color: #d4a54f;
  box-shadow: 0 0 0 3px rgba(231, 183, 62, 0.14);
}

.songSearchFilter {
  grid-column: span 2;
}

.songBoard {
  padding: 14px;
}

.songBoardHeader {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.songBoardMeta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.feelFilterRow.feelFilterRowHeader {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  align-self: center;
  margin: 0 auto 0 -6px;
  min-height: 32px;
  padding: 2px 20px 2px 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
  border: 1px solid #d6dee9;
}

.viewToggle {
  display: inline-flex;
  padding: 2px;
  border-radius: 8px;
  background: #eef3f8;
  border: 1px solid #d6dee9;
  gap: 2px;
}

.viewToggleBtn {
  min-height: 26px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4f6076;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.viewToggleBtn.active {
  background: linear-gradient(180deg, #fff8e8 0%, #f4df9b 100%);
  color: #5b4100;
  box-shadow: 0 4px 12px rgba(199, 154, 49, 0.18);
}

.songBoardHeader h3,
.patternCard h3,
.ideaCard h3 {
  margin: 4px 0 0;
  color: #263250;
}

.songBoardFilters {
  margin-top: 4px;
  color: #8a6618;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.songResults,
.patternGrid,
.ideaGrid {
  display: grid;
  gap: 12px;
}

.songResults {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.songResultsFooter {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.songResultsMoreBtn {
  min-width: 180px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #5b4100;
  background: linear-gradient(180deg, #f7e08a 0%, #e7b73e 100%);
  border: 1px solid rgba(181, 128, 22, 0.34);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
}

.songResultsMoreBtn:hover,
.songResultsMoreBtn:focus-visible {
  color: #4b3600;
  background: linear-gradient(180deg, #f9e79c 0%, #ebb94a 100%);
}

.songResultsGridView {
  grid-template-columns: 1fr;
  gap: 10px;
}

.songRowHeader {
  display: grid;
  grid-template-columns: 44px minmax(220px, 1.24fr) minmax(88px, 0.52fr) minmax(150px, 0.8fr) minmax(118px, 0.6fr) minmax(108px, 0.5fr) 58px 38px;
  column-gap: 6px;
  row-gap: 10px;
  align-items: center;
  padding: 0 11px 2px;
  color: #7b889b;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.songRowHeader > :nth-child(3) {
  text-align: center;
}

.songRowHeader > :nth-child(5),
.songRowHeader > :nth-child(6),
.songRowHeader > :nth-child(7),
.songRowHeader > :nth-child(8) {
  text-align: center;
}

.patternGridCardView {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.patternGridTableView {
  grid-template-columns: 1fr;
  gap: 10px;
}

.patternBoard {
  padding: 14px;
}

.songCard {
  padding: 15px;
}

.songCompactCard {
  display: flex;
  flex-direction: column;
  padding: 11px 12px;
  overflow: hidden;
  height: 100%;
}

.songCardFocus {
  border-color: #d4882d;
  box-shadow: 0 0 0 3px rgba(239, 143, 55, 0.22), 0 16px 30px rgba(15, 23, 42, 0.10);
}

.songCardTop,
.patternCardTop {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.songGenreTag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px 8px;
  min-width: 74px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff8e7 0%, #f4e3b5 100%);
  color: #7c5a12;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.songArtist {
  margin-top: 0;
  font-size: 0.84rem;
  color: #5d6a7d;
  line-height: 1.2;
}

.songArtistName {
  display: inline;
}

.songArtistYear {
  white-space: nowrap;
}

.songCardTitleBlock {
  min-width: 0;
}

.songCompactCard h3 {
  margin: 0;
  line-height: 1.08;
}

.songCompactCard .songArtist {
  margin-top: 2px;
  font-size: 0.76rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.songMetaTop {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.songMetaInlineLabel {
  color: #7b889b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.songMetaInlineDivider {
  margin-left: 6px;
  color: #a87416;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.songMetaInlineValue {
  color: #4f6076;
  white-space: nowrap;
}

.songCardFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid #e6edf5;
}

.songCardFooterMeta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
  color: #4f6076;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
}

.songCardActions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 54px;
}

.songAudioBtn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  padding: 0;
  border: 1px solid #d6dee9;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  color: #2f6676;
  font-size: 0.88rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.songAudioBtn:hover,
.songAudioBtn:focus-visible {
  border-color: #b8c8db;
  background: linear-gradient(180deg, #ffffff 0%, #ebf2f8 100%);
}

.songAudioBtn:disabled,
.songAudioBtn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: default;
  border-color: #d6dee9;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  color: #7f8ca0;
}

.songAudioBtn.isPlaying {
  border-color: #d4a54f;
  background: linear-gradient(180deg, #fffaf0 0%, #f5e7c8 100%);
  color: #8a5a18;
  box-shadow: 0 0 0 2px rgba(212, 165, 79, 0.16);
}

.songAudioPlaceholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: #f2f5f8;
  color: #7f8ca0;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.songMetaGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 10px 0 8px;
}

.songMetaRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.songTempoMeta {
  flex-shrink: 0;
  color: #7b889b;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.songMetaLabel {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7b889b;
}

.songProgression,
.songKey,
.songTime,
.patternCode,
.patternCount {
  font-weight: 800;
  color: #243054;
}

.songKey,
.songTime {
  font-size: 0.84rem;
  line-height: 1.2;
}

.songProgression {
  font-size: 0.9rem;
  line-height: 1.36;
}

.songCompactCard .songMetaGrid {
  margin: 8px 0 6px;
}

.songCompactCard .songMetaLabel {
  padding-top: 8px;
  margin-bottom: 1px;
}

.songCompactCard .songProgression {
  padding-top: 0;
}

.songCompactCard .songNote {
  font-size: 0.81rem;
  line-height: 1.38;
  color: #66788f;
}

.songCompactCard .songCardFooter {
  margin-top: auto;
}

.songRowCard {
  display: grid;
  grid-template-columns: 44px minmax(220px, 1.24fr) minmax(88px, 0.52fr) minmax(150px, 0.8fr) minmax(118px, 0.6fr) minmax(108px, 0.5fr) 58px 38px;
  column-gap: 6px;
  row-gap: 8px;
  align-items: center;
  padding: 7px 11px;
  min-height: 60px;
  border-radius: 14px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.songRowCard:hover,
.songRowCard:focus-within {
  transform: translateY(-1px);
  border-color: #c7d3e2;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

.songRowAudio {
  display: flex;
  justify-content: center;
}

.songRowMain {
  min-width: 0;
  overflow: hidden;
}

.songRowGenre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.songRowTitle,
.songRowProgression,
.songRowStrum,
.songRowTempo,
.songRowTime,
.songRowKey {
  color: #243054;
}

.songRowTitle {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.06;
}

.songRowProgression,
.songRowStrum,
.songRowTempo,
.songRowTime,
.songRowKey {
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  justify-self: start;
}

.songRowStrum,
.songRowTempo,
.songRowTime,
.songRowKey {
  justify-self: center;
}

.songRowProgression,
.songRowStrum,
.songRowTempo,
.songRowTime,
.songRowKey {
  color: #4c617b;
}

.songRowTempo {
  padding-right: 8px;
}

.songRowFeel {
  color: #7b889b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.patternListRow {
  display: grid;
  grid-template-columns: 44px minmax(220px, 1.15fr) minmax(150px, 0.9fr) minmax(260px, 1fr) 64px;
  column-gap: 18px;
  row-gap: 6px;
  align-items: center;
  padding: 5px 11px;
  min-height: 56px;
  border-radius: 14px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.patternListRow:hover,
.patternListRow:focus-within {
  transform: translateY(-1px);
  border-color: #c7d3e2;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

.patternRowHeader {
  display: grid;
  grid-template-columns: 44px minmax(220px, 1.15fr) minmax(150px, 0.9fr) minmax(260px, 1fr) 64px;
  column-gap: 18px;
  align-items: center;
  padding: 0 11px 1px;
  color: #7b889b;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.patternRowHeader > :nth-child(3),
.patternRowHeader > :nth-child(5) {
  text-align: center;
}

.patternListAudio {
  display: flex;
  justify-content: center;
}

.patternListRow .songAudioBtn {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  font-size: 0.82rem;
}

.patternListMain {
  min-width: 0;
}

.patternListFeel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.patternFeelTag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 8px;
  background: #eef2f6;
  color: #44556b;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.patternListTitle {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.05;
  color: #243054;
}

.patternListDescription {
  margin-top: 4px;
  color: #66788f;
  font-size: 0.76rem;
  line-height: 1.32;
}

.patternListTime,
.patternTime {
  margin-top: 3px;
  font-size: 0.74rem;
  font-weight: 800;
  color: #66758b;
}

.patternListPattern {
  color: #243054;
  justify-self: start;
}

.patternListTimeCol {
  color: #4c617b;
  font-size: 0.79rem;
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  justify-self: center;
  white-space: nowrap;
}

.songTagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.songTagRow span {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef3f8;
  color: #4e6076;
  font-size: 0.7rem;
  font-weight: 700;
}

.patternCard {
  padding: 15px;
}

.patternCompactCard {
  display: flex;
  flex-direction: column;
  padding: 10px 12px 12px;
  overflow: hidden;
}

.patternTileHeader {
  min-width: 0;
}

.patternTitleRow {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.patternCompactCard h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.04;
}

.patternDescription {
  margin: 8px 0 0;
  color: #66788f;
  font-size: 0.8rem;
  line-height: 1.38;
}

.patternCompactCard .songAudioBtn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.patternCompactCard .patternCardTop {
  padding-bottom: 10px;
}

.patternTimeTag {
  display: block;
  color: #9a6f18;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.patternCode {
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.patternCodeCard {
  display: flex;
  justify-content: center;
  margin: auto 0 0;
  min-height: 84px;
  padding: 12px 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff 0%, #e3edf8 100%);
  border: 1px solid #d6e2f0;
}

.patternCompactCard .patternStrokeDisplay {
  justify-content: center;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.patternCompactCard .patternStroke {
  min-width: 16px;
  row-gap: 2px;
}

.patternCompactCard .patternStrokeSymbol {
  font-size: 1.02rem;
  color: #8a5a18;
}

.patternCompactCard .patternStrokeArrow {
  color: #b1832a;
  font-size: 1.06rem;
}

.patternStrokeDisplay {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.patternStrokeDisplayCompact {
  gap: 4px;
}

.patternBeatGroup {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.patternBeatGroup + .patternBeatGroup {
  position: relative;
  margin-left: 10px;
  padding-left: 12px;
}

.patternBeatGroup + .patternBeatGroup::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(143, 162, 188, 0.55);
}

.patternStrokeDisplayCompact .patternBeatGroup {
  gap: 4px;
}

.patternStrokeDisplayCompact .patternBeatGroup + .patternBeatGroup {
  margin-left: 6px;
  padding-left: 8px;
}

.patternStroke {
  display: inline-grid;
  justify-items: center;
  row-gap: 0;
  min-width: 11px;
}

.patternStrokeSymbol {
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #243054;
}

.patternStrokeArrow {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  color: #6b7a90;
}

.patternCode .patternStrokeSymbol {
  font-size: 0.95rem;
}

.patternCode .patternStrokeArrow {
  font-size: 1rem;
}

.patternCount {
  margin-top: 4px;
  font-size: 0.78rem;
  color: #6a7890;
}

.ideaGrid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ideaCard {
  padding: 18px;
}

/* ── Feel card stripe ──────────────────────────────────────────────────── */
.songCardStripe {
  height: 3px;
  margin: -11px -12px 9px;
  width: calc(100% + 24px);
  flex-shrink: 0;
}

/* ── Compact strum pill in footer ──────────────────────────────────────── */
.songFeelBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid #d6e2f0;
  background: linear-gradient(180deg, #f7fbff 0%, #e3edf8 100%);
  color: #34506f;
  white-space: nowrap;
}

/* ── Feel filter pill row ───────────────────────────────────────────────── */
.feelFilterRow {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
  max-width: 100%;
  padding: 0;
}

.feelFilterLabel {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a9ab0;
  margin-right: 10px;
  white-space: nowrap;
}

.feelPill {
  padding: 1px 5px;
  border-radius: 8px;
  border: 1px solid #d0d8e5;
  background: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  line-height: 1.1;
  color: #556070;
  cursor: pointer;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  font-family: inherit;
  white-space: nowrap;
  text-align: center;
}

.feelPill:hover {
  border-color: #b0bccf;
  background: #f6f8fc;
}

.feelPill.feelPillActive {
  border-color: transparent;
}

.emptyState {
  padding: 28px 18px;
  text-align: center;
}

.emptyState h3 {
  margin: 0 0 8px;
  color: #263250;
}


.labFooter {
  position: relative;
  z-index: 6;
  margin-top: 10px;
}

@media (max-width: 960px) {
  .labHero {
    grid-template-columns: 1fr;
  }

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

  .songSearchFilter {
    grid-column: span 2;
  }

  .feelFilterRow {
    display: flex;
    flex-wrap: wrap;
  }

  .songRowCard {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .songRowHeader {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 700px) {
  .songControls {
    grid-template-columns: 1fr;
  }

  .songSearchFilter {
    grid-column: span 1;
  }

  .songRowCard {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .songRowHeader {
    display: none;
  }

  .patternListRow {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .patternRowHeader {
    display: none;
  }

  .songRowGenre,
  .songRowProgression,
  .songRowStrum,
  .songRowTempo,
  .songRowTime,
  .songRowKey {
    grid-column: 2;
  }

  .patternListFeel,
  .patternListPattern,
  .patternListTimeCol {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .labLayout,
  .labSection {
    padding: 16px;
  }

  .labStatusPanel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .labStatusCard {
    min-height: 86px;
    padding: 12px 10px;
  }

  .labHeader {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .songBoardHeader,
  .songCardTop,
  .patternCardTop {
    flex-direction: column;
    align-items: flex-start;
  }

  .songBoardMeta {
    align-items: flex-start;
  }

  .viewToggle {
    display: none;
  }

  .feelFilterRowHeader {
    width: 100%;
    margin: 0;
    padding: 8px 10px 10px 12px;
  }

  .feelFilterRow {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 6px;
  }

  .feelPill {
    flex: 1 1 calc(33.333% - 8px);
    width: auto;
    min-width: 0;
    min-height: 28px;
    padding: 3px 10px;
    font-size: 0.82rem;
    border-radius: 999px;
  }

  .feelFilterLabel {
    flex: 0 0 100%;
    font-size: 0.72rem;
    margin: 0 0 2px;
  }

  .songResultsGridView {
    gap: 12px;
  }

  .songRowCard {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 10px;
    align-items: start;
    padding: 12px;
  }

  .songRowAudio {
    justify-content: flex-start;
    grid-row: 1 / span 2;
    padding-top: 2px;
  }

  .songRowMain,
  .songRowGenre,
  .songRowProgression,
  .songRowStrum,
  .songRowTempo,
  .songRowTime,
  .songRowKey {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .songRowGenre {
    align-items: flex-start;
    gap: 6px;
  }

  .songRowStrum,
  .songRowTempo,
  .songRowTime,
  .songRowKey {
    justify-self: start;
  }

  .songRowMain .songArtist {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

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

  .patternCompactCard {
    padding: 12px;
  }

  .patternCompactCard .patternCardTop {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 8px;
    align-items: start;
  }

  .patternCompactCard .songAudioBtn {
    grid-row: 1 / span 2;
    align-self: start;
  }

  .patternTitleRow {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }

  .patternDescription {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .patternCodeCard {
    min-height: 0;
    padding: 12px;
  }

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

  .songCardActions {
    flex-direction: row;
    align-items: center;
  }
}
