.dock-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.icon-dock .dock-button .material-symbols-rounded,
.icon-dock .dock-button:hover .material-symbols-rounded,
.icon-dock .dock-button:active .material-symbols-rounded,
.icon-dock .dock-button[aria-expanded="true"] .material-symbols-rounded {
  transform: none !important;
  filter: none !important;
  color: rgba(255, 255, 255, 0.88);
}

.music-panel.hidden {
  display: none;
}

.music-panel-head,
.music-panel-toggle {
  width: 100%;
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0 2px;
  color: #fff;
  background: transparent;
  text-align: left;
  font: inherit;
}

.music-panel-head {
  padding-bottom: 10px;
}

.music-panel-toggle {
  cursor: pointer;
}

.music-panel-head span,
.music-panel-toggle span:first-child {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.music-panel-arrow {
  font-size: 24px;
  transition: transform .22s ease;
}

.recent-panel:not(.collapsed) .music-panel-arrow {
  transform: rotate(180deg);
}

.recent-panel.collapsed .track-list {
  display: none;
}

.recent-panel:not(.collapsed) .track-list {
  display: grid;
  margin-top: 10px;
}

.favorites-panel .track-list,
.recent-panel .track-list,
.favorites-page-list {
  max-height: 244px;
}

.track-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.track-card img {
  flex: 0 0 40px;
}

.track-card span {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.track-card strong,
.track-card small,
.spotify-info strong,
.spotify-info p {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.spotify-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.spotify-info {
  min-width: 0;
  overflow: hidden;
}

.favorites-page {
  font-family: Outfit, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.favorites-page .bio-stack {
  padding-top: 16px;
}

.favorites-nav {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.back-button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.back-button .material-symbols-rounded {
  font-size: 30px;
  transform: none !important;
  filter: none !important;
}

.favorites-page-panel {
  margin-top: 8px;
}

.favorites-title {
  min-height: 42px;
  display: block;
  padding: 0 2px 10px;
  text-align: left;
}

.favorites-title span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.favorites-title::after {
  content: none !important;
  display: none !important;
}

.favorites-page-list {
  display: grid;
  gap: 10px;
  max-height: none;
  overflow: visible;
}

@media (max-width: 460px) {
  .music-panel-head,
  .music-panel-toggle,
  .favorites-title {
    min-height: 38px;
  }

  .music-panel-head span,
  .music-panel-toggle span:first-child,
  .favorites-title span {
    font-size: 13px;
  }
}
