.audio-player {
    background-color: rgba(0, 0, 0, 0.075);
    color: rgba(0, 0, 0, 0.7);
    border-radius: 10px !important;
}

.audio-player .progress {
    transition: 0.5s;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.audio-player .progress-bar {
    height: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

[data-bs-theme='dark'] .audio-player {
    color: rgba(255, 255, 255, 0.5);
}

[data-bs-theme='dark'] .audio-player .progress {
    background-color: #fff;
}

[data-bs-theme='dark'] .audio-player .progress-bar {
    background-color: rgba(255, 255, 255, 0.5);
}