.trackItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: left;
}

.trackItem:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.trackItem.active {
  background-color: rgba(243, 156, 18, 0.2);
}

.trackNumber {
  width: 24px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
  flex-shrink: 0;
}

.trackItem.active .trackNumber {
  color: var(--tk-orange, #f39c12);
}

.playingIcon {
  color: var(--tk-orange, #f39c12);
  font-size: 12px;
}

.trackInfo {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trackTitle {
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trackItem.active .trackTitle {
  color: var(--tk-orange, #f39c12);
}

.trackArtist {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trackDuration {
  font-size: 12px;
  color: #888;
  flex-shrink: 0;
}
