.tracklist {
    width: 100%;
}

.track {
    padding: 10px;
    border-bottom: 1px solid #4b5e5f;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
}

.track:hover {
    background-color: #4b5e5f;
}

.track.active {
    background-color: #1a2526;
    color: #fff;
}

/* Track onderdelen */
.track-number {
    flex: 0 0 30px;
}

.track-artist {
    flex: 1;
    font-weight: 300;
}

.track-title {
    flex: 2;
    font-weight: 700;
    text-align: left;
}

.track-duration {
    flex: 0 0 50px;
    text-align: right;
}

/* Responsief voor mobiel */
@media (max-width: 767px) {
    .track {
        display: block;
        position: relative;
        padding-bottom: 15px;
        font-size: 1.3rem;
    }
    
    .track-number {
        display: inline-block;
        width: 30px;
        float: left;
    }
    
    .track-artist {
        display: inline-block;
        width: calc(100% - 30px);
        float: left;
    }
    
    .track-title {
        display: block;
        width: calc(100% - 80px);
        margin-left: 30px;
        float: left;
        clear: left;
    }
    
    .track-duration {
        display: block;
        width: 50px;
        float: right;
    }
    
    .track::after {
        content: "";
        display: table;
        clear: both;
    }
}