.doughnut-container-test {
    width: 200px;
    height: 200px;
    position: relative;
}

.doughnut-test {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.center-test {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; /* Adjust according to the size of the center */
    height: 60px; /* Adjust according to the size of the center */
    background-color: white; /* White color for the center */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-test {
    font-size: 14px; /* Adjust font size as needed */
    color: black; /* Black color for the text */
}

.gray-layer-test, .pink-layer-test {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, 100px, 100px, 50px); /* Adjust clip to show half the doughnut */
}

.gray-layer-test {
    background-color: #ccc; /* Gray color for total */
    z-index: 1;
}

.pink-layer-test {
    background-color: #FF69B4; /* Default color */
    z-index: 2;
    clip: rect(auto, auto, auto, auto); /* Reset clip to show full doughnut */
}

.value-test {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #333;
}

#vitality-fitness-armadillo {
    margin: -11% auto;
    padding: 10%;
}