html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    touch-action: pan-y;
    height: 100%;
    /*overflow: hidden;*/
}


.No_Select {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}


.Songs_List {
    flex: 1;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 5px 10px 10px 10px;
    overflow: auto;
}

.Song_Card {
    display: flex;
    width: calc(100% - 12px);
    height: 70px;
    border-radius: 10px;
    background: #4C3C81;
    padding: 6px;
}

.Song_Card img {
    height: 100%;
    width: auto;
    border-radius: 6px;
}

.Song_Card h3 {
    color: #fff;
    margin: 0;
}

.Song_Card h4 {
    color: rgb(200, 200, 200);
    margin: 6px 0 0 0;
}

.Union {
    display: flex;
    flex-direction: column;
    margin: auto 0 auto 8px;
}






.Audio_Player {
    position: sticky;
    bottom: 0;
    display: flex;
    width: calc(100% - 40px); 
    border-radius: 10px;
    height: 115px; 
    background: #4C3C81; 
    margin: 12px 10px 20px 10px;
    padding: 8px;
    overflow: hidden;
}

.Audio_Player img {
    height: 50px;
    width: 50px;
    border-radius: 5px;
}

.Audio_Player h4 {
    margin: 0;
    color: #fff;
}

.Audio_Player h5 {
    margin: 0;
    color: #fff;
}






.Time_Line {
    display: flex;
    flex-direction: row;
    margin-top: 6px;
}

.Time_Line p {
    margin: 0;
    color: #fff;
    font-size: 12px;
}






