/* Circle Completion - Modern CSS/SVG implementation */
.circle-completion {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 20px auto;
}

.circle-completion svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.circle-completion-bg {
    fill: none;
    stroke: #e6f2f8;
    stroke-width: 12;
}

.circle-completion-progress {
    fill: none;
    stroke: #90c8e8;
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
}

.circle-completion-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 600;
    color: #333;
}

/* Container styling to match original */
.containerInfoCompletion {
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.containerInfoCompletion h4 {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.containerInfoCompletion p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.containerInfoCompletion a {
    color: #4a9fd8;
    text-decoration: underline;
}

.containerInfoCompletion a:hover {
    color: #3a8fc8;
}

.bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.bullet-success {
    background-color: #28a745;
}

.bullet-danger {
    background-color: #dc3545;
}

.containerInfoCompletion .mt-5 {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}
