/* Style de la liste des chansons */ .list { display: flex; flex-direction: column; align-items: center; margin: 20px; } .list div { width: 100%; max-width: 600px; margin: 10px 0; border: 1px solid #ccc; padding: 15px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); background-color: #f9f9f9; } .song-header { display: flex; justify-content: space-between; align-items: center; } .song-name { font-size: 18px; font-weight: bold; } .add-to-playlist { font-size: 16px; cursor: pointer; background-color: #4CAF50; color: white; border: none; padding: 5px 10px; border-radius: 5px; } .add-to-playlist:hover { background-color: #45a049; }