What CSS code can I use to change the color of the typing dots in chat?

I’ve tried

var styleElement = document.createElement(“style”);
styleElement.type = “text/css”;
styleElement.innerHTML = “.tawk-texting-indicator .tawk-texting-dot { background-color: #444444 !important; }”;
document.getElementsByTagName(“head”)[0].appendChild(styleElement);

And

.tawk-texting-indicator .tawk-texting-dot {
background-color: #444444 !important;
}

In my site custom CSS code, yet none of them seem to work.

No css on tawk.to available