.audio-track-list {
    color: #333;
    font-size: 0.9em;
    overflow: hidden;
}

.audio-track-list-item {
    display: flex;
    cursor: pointer;
    transition: background-color .3s ease;
    white-space: nowrap;
}

.audio-track-list-item-button {
    width: 30px;
    display: none;
}

.audio-track-list-item:hover {
    background: #e8e8e8;
}

.audio-track-list-item:hover .audio-track-list-item-button {
    display: flex;
}

.audio-track-list-item:hover .audio-track-list-item-duration {
    display: none;
}

.audio-track-list-item > div:nth-child(2){
    flex: 1;
    border-bottom: 1px dotted #777;
    position: relative;
    top: -5px;
    margin-left: 3px;
    margin-right: 3px;
}

.audio-track-list-item > div:nth-child(3){
    color: #555;
}

[data-theme="dark"] .audio-track-list {
    color: #c0c0c0;
}
[data-theme="dark"] .audio-track-list-item:hover {
    background: #2f3137;
}
[data-theme="dark"] .audio-track-list-item > div:nth-child(2) {
    border-bottom-color: #484848;
}
[data-theme="dark"] .audio-track-list-item > div:nth-child(3) {
    color: #787878;
}