.btn-group {
    /**
     * Sometimes the buttons inside the button group are wrapped in a div like data-controller="dialog-container" etc
     * Bootstrap css only removes the border radius from the first child button in the group
    */
    > * {
        &:not(:last-child) > .btn {
            border-radius: 0;
        }
        &:last-child > .btn {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
    }
}
