.audio-player-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%; /* Adjust width as needed */
    height: 100%; /* Adjust height as needed */
}
.audio-player {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.audio-player:hover {
    cursor: pointer;
}

.audio-player-controls {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 25px; 
    top: 25px; 
    text-align: center;
}

.audio-player-button {
    height: 50px;
}

.audio-player-back-ring {
    width: 90px; 
    height: 90px;
    top: 5px; 
    left: 5px;
    position: absolute;
    background-color: gray;
    border-radius: 50%;
}

.audio-player-back-ring-center {
    width: 86px; 
    height: 86px;
    top: 7px; 
    left: 7px;
    position: absolute;
    background-color: white;
    border-radius: 43px;
}

.audio-player-progress-ring {
    width: 100px; 
    height: 100px;
    top: 0px; 
    left: 0px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}

.audio-player-progress-ring-center {
    width: 80px; 
    height: 80px;
    top: 10px; 
    left: 10px;
    position: absolute;
    background-color: white;
    border-radius: 50%;
}

.audio-player-progress-segment {
    position: absolute;
    background-color: salmon;
    width: 50px;
    height: 50px;
}

.audio-player-progress-segment-1 {
    top: 0;
    left: 50px;
    transform-origin: bottom left;
}

.audio-player-progress-segment-2 {
    top: 50px;
    left: 50px;
    transform-origin: top left;
}

.audio-player-progress-segment-3 {
    top: 50px;
    left: 0px;
    transform-origin: top right;
}

.audio-player-progress-segment-4 {
    top: 0;
    left: 0px;
    transform-origin: bottom left;
}
