When money label (into the moneyBox) has no more than 5 digits everything is fine, but when money is increasing the design is going to be messy. How can I fix it?
StackPane bottom = new StackPane();
VBox vboxBottom = new VBox();
HBox hboxBottomElements = new HBox(15);
HBox hboxBottomMain = new HBox(0);
hboxBottomElements.getChildren().addAll(visaLabel, separator2, adLabel, separator3, governRelationStatus, separator4, christianityLabel);
hboxBottomElements.setPadding(new Insets(5));
vboxBottom.getChildren().addAll(season, separator1, hboxBottomElements);
vboxBottom.setPadding(new Insets(30,0,0,0));
bottom.getChildren().addAll(vboxBottom, next);
StackPane.setAlignment(next, Pos.BOTTOM_RIGHT);
StackPane.setMargin(next, new Insets(0,0,0,999));
hboxBottomMain.getChildren().addAll(moneyBox, bottom);
layout.setBottom(hboxBottomMain);