#audio-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#play-pause-btn {
    background: #A47B5D;
    color: white;
    border: none;
    padding: 10px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#play-pause-btn img {
    width: 30px;
    height: 30px;
}

#play-pause-btn:hover {
    background: #845737;
}