.menu-musique ul {
list-style: none;
padding: 0;
margin: 0;
width: 200px;
background-color: #2c3e50;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.menu-musique ul li {
border-bottom: 1px solid #34495e;
}
.menu-musique ul li:last-child {
border-bottom: none;
}
.menu-musique ul li a {
display: block;
padding: 12px 20px;
color: #ecf0f1;
text-decoration: none;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 600;
transition: background-color 0.3s ease, color 0.3s ease;
}
.menu-musique ul li a:hover {
background-color: #e74c3c;
color: white;
border-radius: 8px;
}