.MonitorPage {
    &-toolbarSelections,
    .PageToolbar {
        display: block;
        margin-bottom: 10px;
    }

    .PageView {
        margin-top: 20px;
    }

    .btn {
        border: none;
    }

    &-switcher {
        float: right;
        background: var(--gray-300);
        border-radius: 4px;
        min-height: 40px;
        padding: 0 3px;
        display: flex;
        align-items: center;
        justify-content: center;

        &-orders,
        &-jobs {
            min-height: 34px;
            width: 60px;
            outline: inherit;
            background: #fff;
            border: none;

            &-orders-text,
            &-jobs-text {
                color: var(--gray-800);
            }
        }
    }

    .ReDeliverDropdown {
        margin-right: 0.5rem;
        width: 200px;
        max-width: 100%;
        font-size: 1rem;
        display: inline-block;
    }

    .OrderIdSearchDropdown,
    .DeliveryStoresDropdown {
        margin-right: 0.5rem;
        width: 150px;
        max-width: 100%;
        font-size: 1rem;
        display: inline-block;
    }

    .DeliveryStatusDropdown,
    .ContributorSearchDropdown {
        margin-right: 0.5rem;
        width: 180px;
        max-width: 100%;
        font-size: 1rem;
        display: inline-block;
    }

    .JobsTable {
        .JobStatus-ready,
        .JobStatus-cancelled,
        .JobStatus-error,
        .JobStatus-complete {
            padding: 4px;
            border-radius: 5px;
        }

        .JobStatus-ready {
            background-color: #cedbe8;
        }

        .JobStatus-complete {
            background-color: #d1efd9;
        }

        .JobStatus-cancelled,
        .JobStatus-error {
            background-color: #fad9d6;
        }

        &-completeDelivery {
            background: none;
            border: none;
            color: green;
            font-size: 12px;
            box-shadow: none;
        }

        &-cancelDelivery {
            background: none;
            border: none;
            color: red;
            font-size: 12px;
            box-shadow: none;
        }

        &-deliveryButtons {
            margin-left: auto;
        }

        &-itemsSelected {
            color: var(--gray-600);
            font-size: 12px;
        }
    }

    .Orders,
    .Jobs {
        &-sticky-row {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;

            &-status {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding-bottom: 5px;
                white-space: nowrap;
                font-size: 12px;
                color: var(--gray-600);
                gap: 20px;

                &-icon {
                    .LoadingSpinner-inner {
                        width: 15px;
                        height: 15px;
                    }
                }
            }
        }
    }
}

.ReactModal-content {
    max-width: 500px;
    white-space: pre-line;
}
