/* Spotify Track Styles */
.spotify-track {
  margin-top: 0.5rem;
  background: rgba(var(--card-rgb), 0.5);
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.spotify-track__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.spotify-track:hover {
  background: rgba(var(--card-rgb), 0.8);
}

.spotify-track__image {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  margin-right: 12px;
}

.spotify-track__info {
  flex: 1;
  min-width: 0;
}

.spotify-track__name {
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotify-track__artist {
  font-size: 0.85em;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotify-track__loading {
  text-align: center;
  padding: 8px;
  font-size: 0.9em;
  opacity: 0.7;
}

.spotify-track .fa-spotify {
  color: #1db954;
  font-size: 1.2em;
  margin-left: 12px;
  flex-shrink: 0;
}

.spotify-track__error {
  text-align: center;
  padding: 8px;
  font-size: 0.9em;
  opacity: 0.7;
}
