body{ 
    font-family: Arial;
    background-color:dimgray;
}
.controls{
    display: flex;
    flex-direction: row;
}
.urlInput{
    height: 2em;
    width: 50em;
    border: 3px solid black;
    border-radius: 4px;
}
.downloadButton{
    margin-left:5px;
    height: 2.5em;
}

.songlist{
    display:flex;
    flex-direction: column;
    margin-top: 10px;
}

.song{
    display:flex;
    flex-direction:row;
    margin-bottom:0.5em;
    border-bottom: 2px solid black;
}

.songProperty{
    margin-right:5px;
    border-left: 2px solid black;
    padding-left: 5px;
    padding-bottom: 1px;
    height:1.4em;
}

.songInput{
    background-color: dimgray;
    border:none;
    text-overflow:ellipsis;
    color: white;
}
.progressBar{
    width:10em;
    height:2em;
}