/* style.css */
.music-player {
width: 300px;
background-color: #141414; /* Dark, baseboard-like background */
color: #EEE;
padding: 10px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.player-controls button {
background: none;
border: none;
color: #999;
cursor: pointer;
font-size: 24px;
padding: 0 10px;
}
.player-controls button:hover {
color: #EEE;
}
#progressBar {
width: 60%;
height: 4px;
background: #555;
cursor: pointer;
outline: none;
appearance: none; /* Removes default styling */
-webkit-appearance: none;
}
/* Style the slider thumb (the draggable dot) */
#progressBar::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 12px;
height: 12px;
background: #999;
border-radius: 50%;
cursor: pointer;
}