/* Design of the Web-Song-List*/

#song-list{
    display: block;
    justify-content: center;
    align-items: center;
    margin: 0 auto;    
}
#song-list p{
    color: var(--secondary-text-color);
}

.song-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(var(--my-content-width)*0.65);
    margin: 0 auto;
    max-width: 90%;
    margin-top: 40px;
    padding: 2px;
    box-sizing: border-box;
    color: var(--secondary-text-color);
}
.table-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: var(--secondary-color);
    border-radius: 25px;
    width: 100%;
    color: var(--text-color);
    font-weight: bold;
}
.letter-break {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
    background-color: var(--secondary-color);
    border-radius: 25px;
    width: 100%;
    color: var(--text-color);
    font-weight: bold;
}
.song-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    border-bottom: 1px solid var(--secondary-color);
    width: 100%;
}
.song-nr{
    flex-basis: 5%;
    text-align: right;
    margin-right: 12px;
    flex-shrink: 0;
}
.song-title {
    flex-basis: 42%;
    margin-right: 12px;
    flex-wrap: wrap;
}
.artist {
    flex-basis: 36%;
    flex-grow: 1;
    margin-left: 30px;
    margin-right: 12px;
    flex-wrap: wrap;
    flex-shrink: 1;
}
.bpm {
    flex-basis: 7%;
    margin-left: 15px;
    margin-right: 5px;
    text-align: right;
    flex-shrink: 0;
}
.time {
    flex-basis: 10%;
    margin-left: 15px;
    margin-right: 5px;
    text-align: right;
    flex-shrink: 0;
}
/* .song-audio{
    flex-basis: 33%;
    text-align: center;
    margin-left: 2px;
} */

@media screen and (max-width: 600px){
    .song-container{
        width: calc(var(--my-content-width)*0.8);
    }
    .song-nr {
        flex-basis: 6%;
    }
    .song-title {
        flex-basis: 41%;
    }
    .artist{
        flex-basis: 41%;
    }    
    .bpm {
        flex-basis: 6%;
    }
    .time {
        flex-basis: 6%;
    }
    /* .song-audio {
        flex-basis: 30%;
    } */
}
@media screen and (max-width: 500px) {
    .song-container{
        width: calc(var(--my-content-width)*0.9);
    }
    .song-nr {
        flex-basis: 6%;
    }
    .song-title {
        flex-basis: 47%;
    }
    .artist {
        flex-basis: 47%;
    }
    .bmp {
        display: none;
    }
    .time {
        display: none;
    }

    /*.song-audio {
        flex-basis: 50%;
    } */
}
