.tracklist-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.track-artist-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.track-artist-link:hover {
    color: var(--accent-primary) !important;
    text-decoration: underline !important;
}

.tracklist-table th {
    text-align: left;
    padding: 12px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--glass-border);
}

.tracklist-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 14px;
}

.tracklist-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.track-num {
    width: 40px;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .tracklist-table th:nth-child(3), 
    .tracklist-table td:nth-child(3) {
        display: none; /* Cache "Album" sur mobile dans la bibliothèque */
    }

    /* Dans Explorer details, les colonnes sont #, Titre, Artiste, Action */
    /* On peut masquer Artiste si c'est le même que l'album */
    
    .tracklist-table td {
        padding: 8px;
        font-size: 13px;
    }

    .play-track-small {
        padding: 4px 8px;
    }
}
