#music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    background: #111;
    color: white;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 15px;
    z-index: 9999;
}

#music-player button {
    background: #1db954;
    border: none;
    color: white;

    padding: 8px 12px;
    border-radius: 50px;
    cursor: pointer;
}

#progress {
    flex: 1;
}

#lyrics-modal {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.85);
    z-index: 10000;
}

.lyrics-content {
    width: 70%;
    margin: 5% auto;

    background: #222;
    color: white;

    padding: 30px;
    border-radius: 15px;
}

#close-lyrics {
    float: right;
    cursor: pointer;
    font-size: 24px;
}