.cp-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.cp-svg {
    display: block;
    overflow: visible;
}

/* Vòng nền màu nhạt */
.cp-track {
    fill: none;
    stroke: #ff7a332d;
}

/* Vòng progress - màu & animation do JS điều khiển */
.cp-fill {
    fill: none;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Text ở giữa vòng tròn */
.cp-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    pointer-events: none;
}

.cp-value-text {
    display: block;
    font-size: 1.4em;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.1;
    font-family: "Dosis", "Varela Round", sans-serif;
}

.cp-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    text-align: center;
    white-space: nowrap;
    font-family: "Dosis", "Varela Round", sans-serif;
}