.custom-button {
    --outline-color: var(--primary-color-500);
    --background-color: var(--primary-color-100);
    --background-color-hover: var(--primary-color-200);
    --text-color: var(--primary-color-900);

    display: flex;
    margin-bottom: 30px;
}

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

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

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