#sticky-player {

    position: fixed;

    bottom: 0;

    left: 0;

    width: 100%;

    background: #181818;

    border-top: 1px solid #282828;

    z-index: 9999;

    color: #fff;

    font-family: Arial, sans-serif;

}

.smp-center {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

.player-container {

    display: flex;

    align-items: center;

    padding: 10px 20px;

    max-width: 1200px;

    margin: 0 auto;

}



.track-info {

    display: flex;

    align-items: center;

    width: 25%;

}



#current-album-art {

    width: 50px;

    height: 50px;

    margin-right: 15px;

    object-fit: cover;

}



.player-controls {

    width: 25%;

    display: flex;

    justify-content: center;

}



 .player-controls button {

    background: none;

    border: none;

    color: #fff;

    font-size: 18px;

    /* margin: 0 10px; */

    cursor: pointer;

}



.progress-container {

    width: 40%;

    display: flex;

    align-items: center;

    position: relative;

}



#progress-bar {
    flex-grow: 1;
    height: 4px;
    background: #535353;
    margin: 0 10px;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
}


#progress {

    height: 100%;

    background: #1db954;

    border-radius: 2px;

    width: 0%;

}



.player-tagline {

    position: absolute;

    bottom: -18px;

    width: 100%;

    text-align: center;

    font-size: 11px;

    color: #b3b3b3;

    font-style: italic;

}



.playlist-toggle {

    width: 10%;

    text-align: right;

}



#playlist-dropdown {

    display: none;

    max-height: 300px;

    overflow-y: auto;

    background: #282828;

    border-top: 1px solid #181818;

}



#playlist {

    list-style: none;

    padding: 0;

    margin: 0;

}



#playlist li {

    padding: 10px 20px;

    display: flex;

    align-items: center;

    cursor: pointer;

    border-bottom: 1px solid #383838;

}



#playlist li:hover {

    background: #383838;

}



#playlist li img {

    width: 40px;

    height: 40px;

    margin-right: 15px;

    object-fit: cover;

}