@mixin adf-attach-file-widget-dialog-component-theme($theme) {
    $primary: map-get($theme, primary);
    $foreground: map-get($theme, foreground);
    $background: map-get($theme, background);

    .adf-attach-file-widget-dialog {

        .mat-dialog-actions {

            background-color: mat-color($background, background);
            display: flex;
            justify-content: flex-end;
            color: mat-color($foreground, secondary-text);

            button {
                text-transform: uppercase;
                font-weight: normal;
            }

            .adf-choose-action {

                &[disabled] {
                    opacity: 0.6;
                }

                &:enabled {
                    color: mat-color($primary);
                }
            }
        }
    }
}