Manage space between two components in a container

I have a container with two components (a table and a rich text) displayed side by side.
Is it possible to adjust the spacing between them? They are currently too close, which makes it harder to read
Thanks for you help

Use Custom CSS on the container:

.section-container .container-padding-md {
    gap: 0 60px;
}

Great! thanks