.goal-card {
    width:220px;
    height:220px;
    border-radius : 50%;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.goal-progress {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 650px;
}

.goal-progress-step {
    position: relative;
    flex: 1;
    text-align: center;
    color: #adb5bd;
}

/* Connecting line */
.goal-progress-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #dee2e6;
    z-index: 0;
}

.goal-progress-step.completed:not(:last-child)::after {
    background-color: var(--bs-success);
}

.goal-progress-dot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    border: 3px solid #dee2e6;
    border-radius: 50%;
    background-color: var(--bs-body-bg);
    font-size: 0.85rem;
    font-weight: 600;
}

.goal-progress-step.completed {
    color: var(--bs-success);
}

.goal-progress-step.completed .goal-progress-dot {
    border-color: var(--bs-success);
    background-color: var(--bs-success);
    color: white;
}

.goal-progress-step.current {
    color: var(--bs-primary);
    font-weight: 600;
}

.goal-progress-step.current .goal-progress-dot {
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
    color: white;
    box-shadow: 0 0 0 5px rgba(var(--bs-primary-rgb), 0.15);
}

.goal-progress-label {
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .goal-progress-label {
        font-size: 0.72rem;
    }

    .goal-progress-dot {
        width: 30px;
        height: 30px;
    }

    .goal-progress-step:not(:last-child)::after {
        top: 14px;
    }
}