.loading-spinner {
    width: 30px;
    height: 30px;
    display: inline-block;
    border: 5px solid rgba(29, 7, 7, 0.308);
    border-radius: 50%;
    border-top-color: #fff;
    animation: 1s spin infinite ease-in-out
}
.audio-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.loading-spinner-mix {
    position: absolute;
    /* Adjust these styles to fit the size of your audio control */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7); /* semi-transparent background */
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
