.playlist-song-main {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.playlist-song-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.playlist-song-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.playlist-song-title,
.playlist-song-artist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playlist-song-artist {
    color: #bbb;
}

.playlist-song-actions {
    display: flex;
    align-items: center;
}

.playlist-song-download-status {
    margin-right: 8px;
    font-size: 16px;
    opacity: 0.7;
}

.playlist-song-play-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-weight: bold;
    margin-right: 8px;
}

.playlist-song-menu-wrap {
    position: relative;
}

.playlist-song-menu-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 0 8px;
    color: white;
}

.playlist-song-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 28px;
    background: #222;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-width: 140px;
    z-index: 10;
}

.playlist-song-remove-btn {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 10px 16px;
    text-align: left;
    cursor: pointer;
}
