.goalProgressChart {
    display: flex; 
    flex-direction: column;
    align-items: flex-start;

    > header {
        margin-bottom: 0;
    }
}

/**
 * The size of the chart is relative to the container.
 * To get close to the design,
 * the size is balanced at flex 3/2
 * and the margins use negative values to control padding.
 */
.chartContainer {
    display: flex;
    align-items: center;
    gap: 24px;
    
    transform: translateX(-50px);
    width: calc(100% + 50px);
}

.goalDetails {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .25rem;
}

.detailsLabel {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.43;
    color: #1f2937;
}

.detailsAmount {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.56;
    color: #2d802f;
}

.goal {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 4px;
    color: #1F2937;
}

.amount {
    color: #2D802F;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 28px;
}

.goalType {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #4b5563;
}
