/* CirclePlayer Styles - Version réduite, circulaire et centrée */
.cp-container {
    position: relative;
    width: 60px;
    height: 60px;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    border-radius: 50%;
    overflow: hidden;
}

.cp-container :focus {
    border: none;
    outline: 0;
}

/* Cache les éléments de progression et de buffer */
.cp-buffer-1,
.cp-buffer-2,
.cp-progress-1,
.cp-progress-2,
.cp-buffer-holder,
.cp-progress-holder {
    display: none !important;
}

.cp-circle-control {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 50%;
}

.cp-controls {
    margin: 0;
    padding: 0;
}

.cp-controls li {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cp-controls li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    z-index: 1;
    cursor: pointer;
    border-radius: 50%;
}

.cp-controls .cp-play::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 18px solid #ffffff;
    border-bottom: 10px solid transparent;
    margin-left: 4px; /* Ajustement fin pour le centrage visuel */
}

.cp-controls .cp-pause::before,
.cp-controls .cp-pause::after {
    content: '';
    width: 6px;
    height: 20px;
    background: #ffffff;
    margin: 0 3px;
}

.cp-jplayer {
    width: 0;
    height: 0;
}

/* Cache le lien */
.audiofield-player + a {
    display: none !important;
}