



/* Music Player stylings */

.music-player {
    width: 300px;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.player-controls button {
    padding: 10px 15px;
    margin: 5px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-top: 15px;
    overflow: hidden;
}

#progress-bar {
    height: 100%;
    width: 0%; /* Will be updated by JavaScript */
    background-color: #28a745;
    border-radius: 4px;
}