.copy {
  margin:20px;
  padding:20px;
  border: 1px solid #ddd;
  border-radius:3px;
  font-size:18px;
}

.panel { 
  margin: 20px; 
  padding:0; 
  height:34px;
}

.audio-panel {
  border: 1px solid #ddd;
}

#playlist, audio {
  width:100%;
}

.active a {
  color:#694d02;
  text-decoration:none;
}

.playlist ul {
  list-style:none; 
  margin:0; 
  padding:20px;
}

.playlist li {
  margin:0; 
  padding:0;
  transition:all 0.5s;
}

.playlist li a {
  display:block;
  text-decoration:none; 
  color:#694d02;
}

.playlist li:hover {
  background-color:#333; 
  color:#694d02;
}

.playlist li a:hover {
  color:white;
}

.last {
  display:none;
}

.recordings-panel {
  margin-top: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8d1cd;
  border-radius: 8px;
}

.recordings-panel .player {
  display: block;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #d8d1cd;
}

.track-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-row {
  display: grid;
  grid-template-columns: 2rem 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #e5dfdc;
  cursor: pointer;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.track-row:last-child {
  border-bottom: 0;
}

.track-row:hover {
  background: #f5edeb;
}

.track-row.active {
  background: #ab6130;
  color: #fff;
}

.track-play {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.track-number {
  color: #777;
  font-variant-numeric: tabular-nums;
}

.track-row.active .track-number {
  color: inherit;
}

.track-title {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-category {
  padding: 0.15rem 0.55rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  opacity: 0.75;
}

@media (max-width: 560px) {
  .track-row {
    grid-template-columns: 2rem 2rem minmax(0, 1fr);
  }

  .track-category {
    display: none;
  }
}
.track-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.track-title {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-artist {
  margin-top: 0.15rem;
  overflow: hidden;
  color: #666;
  font-size: 0.85rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-row.active .track-artist {
  color: inherit;
  opacity: 0.8;
}