/* Custom CSS for audio player */
.custom-audio-player {
    width: 100%;
    max-width: 600px;
    margin: 20px 0;
    border-radius: 5px;
}

/* Custom controls styling */
.custom-controls {
    display: flex;
    margin-top: 10px;
    color:#000000;
    justify-content: center;
    align-items: center;

}

.custom-controls button {
    padding: 5px 25px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.custom-pause-button{
    color:#B6B6B6;
}

.custom-play-button{
    color:#000000;
}

.custom-controls button img {
    vertical-align: middle;
    margin-right: 5px;
}

.custom-play-button:focus {
    color: #000000;
    background-color: transparent;
}

 .custom-play-button:hover{
    color: #000000;
    background-color: transparent;
}

.custom-pause-button:focus{
    color: #B6B6B6;
    background-color: transparent;
}

.custom-pause-button:hover{
    color: #B6B6B6;
    background-color: transparent;
}