.player-container {
    width: 300px;
    margin: 50px auto;
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
}

/* Hide default controls to use custom ones */
#audio-player {
    display: none; 
}

.controls button {
    margin: 0.5vw;
    padding: 0.5vw 0.75vw;
    cursor: pointer;
}

#playlist {
    height: 8vw;
    overflow-y: scroll;
    list-style: none;
    padding: 0;
}

#playlist li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.3s;
}

#playlist li:hover {
    background-color: #f4f4f4;
}

#playlist li.active {
    background-color: #ddd;
    font-weight: bold;
}

.progress-wrap {
    margin-top: 12px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #4a90e2;
    transition: width 0.1s linear;
}

.time-display {
    margin-top: 6px;
    font-size: 13px;
    color: #333;
}
