/* style.css */
body { 
    font-family: Arial, sans-serif; 
    padding: 20px; 
}
.wrapper{
    display: flex;
    justify-content: center;
}
.box{
    width: 390px;
    margin: auto;
}

#playlist li { 
    cursor: pointer; 
    margin: 5px 0; 
}

#playlist li.active { 
    font-weight: bold; 
    color: green; 
}

#controls { 
    margin-top: 10px; 
    margin-bottom: 10px; 
    display: flex; 
    justify-content: center;
    gap: 30px; 
}

button { 
    padding: 5px; 
    width: 50px; 
    height: 50px; 
    cursor: pointer; 
    border: none; 
    background: #f0f0f0; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    /* transition: background 0.2s;  */
}

button:hover { 
    background: #ddd; 
}

#current { 
    margin-top: 10px; 
    font-style: italic; 
}

#progress-container { 
    width: 100%; 
    height: 10px; 
    background: #ddd; 
    margin-top: 10px; 
    cursor: pointer; 
    border-radius: 5px; 
    position: relative; 
}

#progress { 
    width: 0%; 
    height: 100%; 
    background: green; 
    border-radius: 5px; 
}

#time { 
    margin-top: 5px; 
    font-size: 14px; 
}

svg { 
    width: 20px; 
    height: 20px; 
    fill: black; 
}