.ProductStatus {
    &-action-required,
    &-completed,
    &-correction-mode,
    &-submitted {
        border-style: solid;
        border-width: 1px;
        /* stylelint-disable declaration-no-important */
        margin-bottom: 20px !important;
        margin-top: 0;
        padding: 10px;
    }

    &-action-required,
    &-correction-mode {
        background-color: $red_100;
        border-color: $red_200;
        color: $red_200;
    }

    &-completed {
        background-color: var(--gray-100);
        border-color: $grey_300;
        color: $grey_200;
    }

    &-submitted {
        background-color: $blue_100;
        border-color: $blue_300;
        color: $blue_300;
    }
}
