.custom-button {
    display: flex;
    margin-bottom: var(--space-2);
}

.custom-button.align-left {
    justify-content: flex-start;
}

.custom-button.align-center {
    justify-content: center;
}

.custom-button.align-right {
    justify-content: flex-end;
}

.custom-button .button-link:focus {
    outline: var(--sw-focus-color) solid 1px;
    outline-offset: 2px;
}