
.audio-interface {
    margin:10px;
    border: 4px solid black;
    padding: 10px;

}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: large;
    font-weight:bolder;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

.play, .pause, .mute, .shuffle {
    font-size: 16px;
}

.currently-playing {
    font-size: 14px;
    color: gray;
    margin-bottom: 10px;
    text-align:left;
}

.playlist {
    list-style-type: none;
    padding: 0;
    text-align:left;

}

.playlist li {
    margin-bottom: 5px;
}

progress {
    display:flex;
    width:80vw;
    
}
.playlist {
    list-style-type: none;
    padding: 0;
    max-height: 100px;  /* adjust as needed */
    overflow-y: scroll;
    border: 2px solid #ccc;
    margin-top: 10px;
}

.playlist li {
    padding: 5px;
    cursor: pointer;
}

.playlist li:hover {
    background-color: #f0f0f0;
}
.playlist li.active {
    background-color: #eee;
}


/* ... other styles ... */
