/* ═══════════════════════════════════════════════════════════════
   MY SONGS LIBRARY
   ═══════════════════════════════════════════════════════════════ */

.my-songs-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.my-song-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.6rem 0.75rem;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  transition: border-color 0.2s;
}

.my-song-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.my-song-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.my-song-info {
  flex: 1;
  min-width: 0;
}

.my-song-title {
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.my-song-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.my-song-download {
  text-decoration: none !important;
  font-size: 0.8rem !important;
  padding: 0.2rem 0.4rem !important;
}
