                        
#music-player-container {
    position: fixed;
    bottom: 10px;
    left: 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.music-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #343A40; /* Use whatever color you want */
    padding: 10px 10px;
    border: 1px solid azure; /* Make the border however you want */
}

.music-player button {
    background-color: #343A40; /* Previous, Play/Pause, and Next button color */
    color: azure; /* Symbol colors */
    border: 1px solid azure; /* Button border */
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.music-player button:hover {
    background-color: azure; /* Button hover background */
    opacity: 50%;
    color: azure; /* Button hover text */
}
.music-player input[type="range"] {
    appearance: none;
    width: 150px;
    height: 8px;
    background: azure; /* Progress and Volume slider background */
    outline: #343A40; /* Change its color */
    margin: 0;
}
.music-player input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    background: azure; /* Mobile slider color, I think */
    cursor: pointer;
}
#volume-label {
    font-size: 14px;
    color: azure; /* Volume percentage */
}

#song-info {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    font-size: 14px;
    color: azure; /* Song and Artist labels */
    text-align: center;
}
#song-title {
    font-weight: bold;
}
#song-artist {
    font-style: italic;
}

/* Button to hide the player */
#toggle-button {
    background-color: #343A40;
    color: azure;
    border: 1px solid azure;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-left: 5px;
}
#toggle-button:hover {
    background-color: azure;
    color: azure;
}
/* Button end */
                        
                    