:root {
  /* WEBB-FM brand: navy #01165a, electric blue #0489f7, white.
     Light theme so the white-background logo blends into the page. */
  --bg: #f7f9fc;
  --card: #ffffff;
  --fg: #01165a;
  --muted: #6b7388;
  --accent: #0489f7;
  --accent-dim: #d3dae6;
  --on-accent: #ffffff;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
}

/* --- ambient background blobs ------------------------------------------ */
.blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.blobs span {
  position: absolute;
  width: 55vw; height: 55vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.blobs span:first-child  { top: -18%; left: -12%; background: #cfe5ff; }
.blobs span:last-child   { bottom: -18%; right: -12%; background: #d9ecff; }

.nav, .show-banner, main, .mini-player { position: relative; z-index: 1; }

/* --- mini-player (sticky, shown on non-home routes) --------------------- */
.mini-player {
  position: sticky;
  top: 8px;
  margin: 12px 18px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-dim);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(1, 22, 90, 0.18);
  z-index: 5;
}
.mini-player[hidden] { display: none; }
.mini-art-link { line-height: 0; flex: 0 0 auto; }
.mini-art {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #e6ebf3;
  border: 1px solid var(--accent-dim);
}
body.playing .mini-art { animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.mini-info { flex: 1; min-width: 0; }
.mini-show {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.mini-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-artist {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-play {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(4, 137, 247, 0.4);
}
.mini-play:hover { background: #2a9bff; }
@media (max-width: 560px) {
  .mini-player { margin: 10px 12px 0; gap: 10px; padding: 8px 12px 8px 8px; }
  .mini-art { width: 40px; height: 40px; }
  .mini-play { flex-basis: 38px; width: 38px; height: 38px; font-size: 14px; }
  .mini-title { font-size: 14px; }
}

/* --- top navigation ----------------------------------------------------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--accent-dim);
}
.nav-brand { display: block; line-height: 0; }
.logo { height: 48px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { color: var(--fg); background: var(--accent-dim); }
.nav-link.active {
  color: var(--accent);
  background: #e7f2ff;
}

.nav-right { display: flex; align-items: center; gap: 14px; }

@media (max-width: 560px) {
  .nav-links { gap: 2px; }
  .nav-link { padding: 6px 9px; font-size: 11px; letter-spacing: 0.4px; }
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: #e7f2ff;
  padding: 6px 12px;
  border-radius: 999px;
}
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-dim);
}
.dot.live { background: #5ad17a; box-shadow: 0 0 8px #5ad17a; }

/* --- Now Airing show banner -------------------------------------------- */
.show-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 12px 18px 0;
  padding: 14px 20px;
  background: var(--card);
  border: 1px solid var(--accent-dim);
  border-radius: 14px;
  flex-wrap: wrap;
}
.show-banner[hidden] { display: none; }
.show-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 2px;
}
.show-name { margin: 0; font-size: 22px; font-weight: 700; line-height: 1.1; }
.show-host { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.show-next { text-align: right; }
.show-next-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.show-next-text { margin: 2px 0 0; color: var(--fg); font-size: 14px; font-weight: 500; }
@media (max-width: 540px) {
  .show-banner { flex-direction: column; align-items: flex-start; }
  .show-next { text-align: left; }
}

/* --- main layout -------------------------------------------------------- */
main {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 18px 56px;
}

/* --- hero: album art + now playing ------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 24px 0 12px;
}

.art-wrap {
  position: relative;
  width: 264px; height: 264px;
  flex: 0 0 auto;
}
.art-glow {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: var(--accent);
  filter: blur(46px);
  opacity: 0.18;
}
body.playing .art-glow { animation: glow 3.2s ease-in-out infinite; }
@keyframes glow {
  0%, 100% { opacity: 0.16; }
  50% { opacity: 0.34; }
}
.art {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--accent-dim);
  box-shadow: 0 14px 40px rgba(1, 22, 90, 0.22);
  background: #e6ebf3;
}

.hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 420px;
}

.broadcast-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #e0476b;
  background: #fdeef1;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.np-line {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}
.np-sub {
  margin: 6px 0 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--accent);
}
.np-sub:empty { display: none; }
.np-caption {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--accent-dim);
  font-style: italic;
  color: var(--fg);
}
.np-caption:empty { display: none; }

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.play {
  padding: 15px 44px;
  font-size: 17px;
  font-weight: 700;
  color: var(--on-accent);
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(4, 137, 247, 0.4);
  transition: background 0.15s, transform 0.05s;
}
.play:hover { background: #2a9bff; }
.play:active { transform: scale(0.97); }

.up-next {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent);
}
.up-next:empty { display: none; }

/* --- lyrics note sheet -------------------------------------------------- */
.lyrics {
  margin-top: 32px;
  background: var(--card);
  border: 1px solid var(--accent-dim);
  border-radius: 18px;
  padding: 20px 24px 24px;
  box-shadow: 0 10px 30px rgba(1, 22, 90, 0.14);
}
.lyrics[hidden] { display: none; }
.lyrics-head {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 0 0 12px;
}
.lyrics-text {
  margin: 0;
  font: inherit;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--fg);
  line-height: 1.7;
}

/* --- station queue carousel -------------------------------------------- */
.queue { margin-top: 40px; }
.queue-head {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 0 0 14px;
}

.queue-scroll { position: relative; }

.fade {
  position: absolute;
  top: 0; bottom: 16px;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.fade-l { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.fade-r { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.carousel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  overflow-x: auto;
  padding: 12px 4px 16px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel:empty::after {
  content: "Nothing has played yet.";
  color: var(--muted);
  font-size: 14px;
  padding: 24px 4px;
}

.card-item {
  flex: 0 0 auto;
  width: 124px;
  text-align: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.card-item .ci-art {
  width: 124px; height: 124px;
  border-radius: 16px;
  overflow: hidden;
  background: #e6ebf3;
  box-shadow: 0 4px 14px rgba(1, 22, 90, 0.14);
}
.card-item .ci-art img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ci-title {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ci-artist {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ci-label {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.card-item.played { opacity: 0.55; }
.card-item.played .ci-art img { filter: grayscale(1); }

/* Played cards are tappable — surface a played track's details below. */
.card-item.tappable { cursor: pointer; }
.card-item.tappable:hover,
.card-item.tappable:focus-visible {
  opacity: 0.9;
  outline: none;
}
.card-item.tappable:hover .ci-art,
.card-item.tappable:focus-visible .ci-art {
  box-shadow: 0 6px 20px rgba(4, 137, 247, 0.3);
}

/* --- played-track detail panel ----------------------------------------- */
.track-detail {
  position: relative;
  margin-top: 14px;
  background: var(--card);
  border: 1px solid var(--accent-dim);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(1, 22, 90, 0.14);
}
.detail-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 30px; height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--fg);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.detail-close:hover { background: #c4cedd; }
.detail-body {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.detail-art {
  width: 96px; height: 96px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--accent-dim);
  background: #e6ebf3;
}
.detail-info { min-width: 0; }
.detail-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
}
.detail-artist {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 2px;
}
.detail-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  margin: 12px 0 0;
}
.detail-meta dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.detail-meta dd {
  margin: 0;
  font-size: 14px;
  color: var(--fg);
}

.card-item.upcoming .ci-label { color: var(--accent); }

.card-item.current {
  width: 156px;
  transform: scale(1.04);
  margin: 0 10px;
}
.card-item.current .ci-art {
  width: 156px; height: 156px;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 26px rgba(4, 137, 247, 0.34);
}
.card-item.current .ci-title { color: var(--accent); font-size: 14px; }
.card-item.current .ci-label { color: var(--accent); }

/* --- wider screens: hero side-by-side ---------------------------------- */
@media (min-width: 720px) {
  .hero {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    margin: 36px 0 16px;
  }
  .art-wrap { width: 300px; height: 300px; }
  .hero-info { align-items: flex-start; text-align: left; }
  .broadcast-tag { align-self: flex-start; }
  .np-line { font-size: 42px; }
}

/* --- archive: schedule / shows / show / episode pages ------------------ */
.route-view { padding-top: 16px; }
.page { display: block; }
.page-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 18px;
}
.section-head {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 28px 0 12px;
}
.page-loading,
.page-empty {
  color: var(--muted);
  font-size: 14px;
  padding: 12px 0;
}

#archive-audio[hidden] { display: none; }
#archive-audio {
  position: sticky;
  bottom: 12px;
  width: 100%;
  margin-top: 24px;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(1, 22, 90, 0.18);
  background: var(--card);
}

/* --- /schedule: day sections + large tiles (WYXR-style) ----------------- */
.sched-day { margin: 28px 0 8px; }
.sched-day:first-of-type { margin-top: 12px; }
.sched-day-head {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.sched-day-today .sched-day-head { color: var(--accent); }

.sched-day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.sched-tile {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--accent-dim);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(1, 22, 90, 0.08);
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}
.sched-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(4, 137, 247, 0.22);
}
.sched-tile-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e6ebf3;
  display: block;
}
.sched-tile-body { padding: 14px 16px 16px; }
.sched-tile-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
}
.sched-tile-when {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.2px;
}
.sched-tile-host {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.sched-tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.sched-tag {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--accent-dim);
  border-radius: 6px;
  padding: 3px 8px;
  background: var(--bg);
}
.sched-tile-onair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--accent);
  margin-bottom: 6px;
}
.sched-tile-onair .pulse {
  width: 7px; height: 7px;
  background: currentColor;
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.sched-tile-airing {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(4, 137, 247, 0.24);
}

@media (min-width: 720px) {
  .sched-day-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
@media (max-width: 560px) {
  .sched-day-head { font-size: 22px; }
  .sched-day-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .sched-tile-body { padding: 12px 12px 14px; }
  .sched-tile-title { font-size: 15px; }
  .sched-tile-when, .sched-tile-host { font-size: 12px; }
}

/* --- /shows list -------------------------------------------------------- */
.show-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.show-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--accent-dim);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(1, 22, 90, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}
.show-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(4, 137, 247, 0.18);
}
.show-logo {
  width: 64px; height: 64px;
  flex: 0 0 64px;
  object-fit: cover;
  border-radius: 14px;
  background: #e6ebf3;
}
.show-card-body { min-width: 0; flex: 1; }
.show-card-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--fg);
}
.show-card-host {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
.show-card-slots {
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.show-card-desc {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- /shows/<slug> page ------------------------------------------------- */
.show-hero {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.show-hero-logo {
  width: 140px; height: 140px;
  flex: 0 0 140px;
  object-fit: cover;
  border-radius: 22px;
  background: #e6ebf3;
  box-shadow: 0 10px 30px rgba(1, 22, 90, 0.18);
}
.show-hero-info { flex: 1; min-width: 0; }
.show-hero-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
}
.show-hero-host {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.show-hero-slots {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.show-hero-desc {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.55;
}

.episode-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.episode-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--accent-dim);
  border-radius: 14px;
  padding: 10px 14px;
}
.episode-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.episode-link:hover .episode-when { color: var(--accent); }
.episode-when {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.episode-meta {
  font-size: 12px;
  color: var(--muted);
}
.play-mini {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(4, 137, 247, 0.4);
}
.play-mini:hover { background: #2a9bff; }

@media (max-width: 560px) {
  .show-hero { flex-direction: column; align-items: center; text-align: center; }
  .show-hero-info { text-align: center; }
}

/* --- /episode/<id> playlist view --------------------------------------- */
.episode-hero {
  background: var(--card);
  border: 1px solid var(--accent-dim);
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(1, 22, 90, 0.1);
}
.episode-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}
.episode-show-link {
  color: var(--accent);
  text-decoration: none;
  margin-left: 2px;
}
.episode-show-link:hover { text-decoration: underline; }
.episode-hero-title {
  font-size: 24px;
  font-weight: 800;
  margin: 6px 0 0;
}
.episode-hero-host {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.episode-hero-actions { margin-top: 14px; }

.playlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.playlist-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  background: var(--card);
  border: 1px solid var(--accent-dim);
  border-radius: 12px;
}
.playlist-time {
  flex: 0 0 60px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.6px;
}
.playlist-art {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  object-fit: cover;
  background: #e6ebf3;
}
.playlist-art.dj-art {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #e7f2ff;
  color: var(--accent);
}
.playlist-info { min-width: 0; flex: 1; }
.playlist-title {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.playlist-artist {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.playlist-script {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-top: 2px;
}
.dj-row { background: #f4f8ff; }
