#playlist {
    position: fixed;
    bottom: 30px;
    left: 20%;
    top: 125px;
    right: 20%;
    overflow-y: scroll;
}

table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

table tr td, table tr th {
    background: #f5f5f5;
}
table tr.upcoming td, table tr.upcoming th {
    background: white;
}

table th {
    font-weight: normal;
    text-align: left;
}
table td, table th {
    border: 1px solid #ccc;
    padding: 10px;
}
table th.track-details {
    vertical-align: top;
}
table tr.played th {
    color: #ccc;
}
table tr.played td a {
    background: #f9f9f9;
    border: 1px solid #ddd;
}
table tr.played td a span {
    color: #ccc;
    border-color: #ccc;
}
table th span {
    color: #ff7777;
    display: block;
    padding-bottom: 0.5em;
    text-align: right;
}

em {
    color: blue;
    font-variant: italic;
    font-weight: bold;
    text-decoration: underline;
}


a.audio {
    width: 100px;
    height: 100px;
    display: inline-block;
    border: 1px solid black;
    border-radius: 20px;
    
    text-decoration: none;
    color: inherit;
    text-align: center;
    
    font-size: 50px;
    font-family: 'Open Sans';;
    padding-top: 85px;
    line-height: 50px;
    box-sizing: border-box;
    background: #f0f0f0;

    position: relative;
}

a.audio::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 25px;
  left: 35px;
  border-style: solid;
  border-width: 20px 0 20px 30px;
  border-color: transparent transparent transparent #888;
}


#stop {
    width: 87%;
    display: block;
    height: 100px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;

    border-radius: 20px;

    font-family: 'Open Sans';
    

    text-align: center;
    font-size: 30px;
    text-decoration: none;
    color: inherit;
    padding-top: 25px;
    background: #faa;
}

a.audio span {
    position: absolute;;
    top: 0;
    right: 0;
    border: 1px solid black;
    border-top-right-radius: 20px;
    margin-right: -1px;
    margin-top: -1px;

    padding-right: 8px;
    padding-left: 8px;
    background: #ffffff;

    font-size: 30px;
    
}
    
a.playing {
    background: #bae0c0;
}
