.abcjs-inline-audio {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      padding: 10px 12px;
      margin-top: 10px;
    }
    .abcjs-inline-audio, .abcjs-inline-audio * { color: var(--text); }
    .abcjs-progress-background { background: rgba(255,255,255,.15) !important; }
    .abcjs-progress-indicator { background: #9fd3ff !important; }
    .abcjs-cursor { stroke:#ff4d4d; stroke-width:2px; opacity:.95; pointer-events:none; }

    .setlistGrid { display:flex; flex-direction:column; gap:14px; }

    .songCardHeader {
      display:flex;
      align-items:baseline;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom: 8px;
    }
    .songCardHeader h2 { margin: 0; font-size: 22px; }
    .songMetaLine { opacity:.75; font-size: 14px; }

    .abcPaper svg { max-width:100%; height:auto; }

    /* Minimal floating header */
    .setlistHeader {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(8px);
      background: rgba(0,0,0,.45);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .setlistHeaderInner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .setlistHeader .left {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }
    .setlistHeader .right {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .songCount {
      opacity: .7;
      font-size: 14px;
      white-space: nowrap;
    }
    .btnSmall { padding: 6px 10px; font-size: 14px; }
    main { padding-top: 10px; }

    @media print {
      .setlistHeader, .noPrint { display:none !important; }
      .card { border:none !important; background:transparent !important; box-shadow:none !important; }
      .setlistGrid { gap: 0 !important; }
      .songCard { page-break-after: always; break-after: page; }
      .songCard:last-child { page-break-after: auto; break-after: auto; }
      html, body { background:#fff !important; color:#000 !important; }
      .abcPaper svg * { fill:#000 !important; stroke:#000 !important; }
      @page { margin: 12mm; }
    }
	
	/* --- QR modal (lightbox) --- */
.qrModal[aria-hidden="true"] { display: none; }
.qrModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
}

.qrBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.qrPanel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 420px);
  border-radius: 16px;
  background: #0f141a;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.6);
  overflow: hidden;
}

.qrHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.qrTitle {
  font-weight: 700;
}

.qrClose {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
}

.qrClose:hover { background: rgba(255,255,255,.08); }

.qrBody {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.qrCodeBox {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
}

.qrUrl {
  font-size: 12px;
  opacity: .85;
  word-break: break-all;
  text-align: center;
}

body.qrOpen { overflow: hidden; }

/* --- Remove from setlist button --- */
.removeFromSetlistBtn {
  margin-left: 10px;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: var(--text);
  cursor: pointer;
  transition: all .15s ease;
}

.removeFromSetlistBtn:hover {
  background: rgba(255, 77, 77, .15);
  border-color: rgba(255, 77, 77, .5);
  color: #ff8080;
}

.removeFromSetlistBtn:active {
  transform: scale(.95);
}

/* --- Galaxy-style header --- */
.header {
  padding: 16px 18px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.leftHead {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.navBtns {
  display: flex;
  gap: 10px;
  align-items: center;
}

.homeBtn,
.statsBtn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  text-decoration: none;
  transition: all .15s ease;
}

.homeBtn,
.statsBtn {
  color: #2dff00; /* same green as galaxy */
}

.homeBtn:hover,
.statsBtn:hover {
  background: rgba(96,165,250,.22);
  border-color: rgba(96,165,250,.55);
  transform: translateY(-2px);
}

.header h1 {
  margin: 0;
  font-size: 20px;
}

.sub {
  margin-top: 6px;
  font-size: 12px;
  opacity: .7;
}

.rightHead {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}