
#menu_main {
    position: fixed;
    top: 8px;
    right: 25px;
    font-size: 30px;
    z-index: 10;
    cursor: pointer;
}
#menu_main_display {
    display: none;
    background-color: #222;
    position: absolute;
    top: 25px;
    right: 65px;
    text-align: center;
    padding: 10px;
    border: 2px solid #f90;
    border-radius: 5px;
    z-index: 10;
    cursor: pointer;
}

#media_player_container {
    background-color: #222;
    position: fixed;
    top: 88px;
    width: 97.5%;
    text-align: center;
    padding: 15px 10px;
    border-top: 2px solid #f90;
    border-bottom: 2px solid #f90;
}

#now_playing_title {
    color: #f90;
    margin-top: 0;
}

#controls,
#toggles { margin-top: 10px; }
#btn_prev,
#btn_play,
#btn_next {
    width: 95%;
    font-size: 25px;
    margin: 0 5px;
    border: 1px solid #f90;
    cursor: pointer;
}

#autoplay_toggle,
#shuffle_toggle {
    font-size: 25px;
    cursor: pointer;
}


#music_nav{
    width: 100%;
    margin-top: 10px;
    /* border-top: 2px solid #f90;
    border-bottom: 2px solid #f90; */
}
#music_nav button{
    width: 115px;
    font-weight: bolder;
    font-size: 14px;
    margin: 2px 4px;
    padding: 8px 0;
    border: 2px solid #f90;
    cursor: pointer;
}


#playlist_display,
#playlist_header {
    background-color: #222;
    position: fixed;
    font-size: 100%;
    margin: auto;
    border: 2px solid black;
}
#playlist_header {
    top: 325px;
    height: auto;
    width: 100%;
    padding: 10px 0;
    padding-left: 15px;
}
#playlist_display {
    top: 368px;
    height: 331px;
    width: 99.5%;
    padding: 0px;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow-y: auto;
}








