/* Circular Progress Widget */
.inapem-circular-progress {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    background: transparent !important;
}

.inapem-circular-progress__svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    background: transparent !important;
}

.inapem-circular-progress__center-fill {
    fill: #FFFFFF !important;
}

.inapem-circular-progress__meter-path {
    fill: var(--Light-Grey, #F5F7F9) !important;
}

.inapem-circular-progress__value {
    fill: none !important;
    stroke: var(--Blue, #469BD3);
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-in-out;
}

.inapem-circular-progress__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 20px;
    pointer-events: none;
}

.inapem-circular-progress__percent {
    display: block;
    color: var(--Navy, #25355C);
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.inapem-circular-progress__label {
    display: block;
    color: var(--Navy, #25355C);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 120px;
    margin: 0 auto;
}
