/* Make every temporarily locked or disabled action visibly unavailable. */
button:disabled,
button[aria-disabled="true"],
button[data-npn-click-locked="1"],
input[type="button"]:disabled,
input[type="button"][data-npn-click-locked="1"],
input[type="submit"]:disabled,
input[type="submit"][data-npn-click-locked="1"],
input[type="image"]:disabled,
input[type="image"][data-npn-click-locked="1"],
a[data-npn-click-locked="1"],
[role="button"][aria-disabled="true"],
[role="button"][data-npn-click-locked="1"] {
    background: linear-gradient(135deg, #475569, #64748b) !important;
    border-color: #64748b !important;
    box-shadow: none !important;
    color: #e2e8f0 !important;
    cursor: not-allowed !important;
    filter: grayscale(1) !important;
    opacity: 0.78 !important;
    pointer-events: none !important;
    text-shadow: none !important;
    transform: none !important;
}

/* Remove the animated turquoise shine from the locked Save this Request button. */
.npn-order-detail-save:disabled::before,
.npn-order-detail-save[aria-disabled="true"]::before,
.npn-order-detail-save[data-npn-click-locked="1"]::before {
    display: none !important;
}
