EditorUI - how to align elements within Horizontal Group

So I have this code in OnInspectorGUI:

GUIStyle left_aligned = new GUIStyle(EditorStyles.label) { alignment = TextAnchor.MiddleLeft };

GUILayout.BeginHorizontal();
GUILayout.Label(first_label, left_aligned);
GUILayout.Label(second_label, left_aligned);
GUILayout.EndHorizontal();

and this result:

7546723--932560--upload_2021-10-5_1-26-17.png

How to make labels left aligned and get rid of space between them?

Thanks,
S.

wrong forum. This is IMGUI: Unity Engine - Unity Discussions

However, you probably can achieve what you want by passing a fixed width to the left label:

GUILayout.Label(first_label, left_aligned, GUILayout.Width(250));