Right Justify Numeric values in a Detail View

Does anyone know how to Right Justify Numeric values in a Detail View?

Unfortunately, this cannot be done without some CSS - I just got this to work to right justify two currency fields:

#view_274 > section > div > div > div:nth-child(2) > div > div.kn-detail.field_407 {
    text-align:   right;
}
#view_274 > section > div > div > div:nth-child(2) > div > div.kn-detail.field_408 {
    text-align:   right;
}

To give:

Screenshot 2021-10-13 at 19.04.44

You can find the ‘Selector Path’ for targeting the CSS using the Inspect Element option in your browser (a right click away) and then use the copy selector path option (this is an example from Safari):

Some trial and error may be required to find just the right item to copy.