/**
 * Saltwater Closure Cleaner styles.
 *
 * Briefly hide the closures table until the cleaner has processed it, so a
 * cached page never flashes rows that are about to be removed. The table is
 * revealed as soon as the script finishes (or after a short safety timeout).
 */

/* Hide table bodies only while the cleaner is still working. */
html:not([data-closure-cleaner-ready]) .uael-table tbody {
	visibility: hidden;
}

/* Once processed / timed out, show normally. */
html[data-closure-cleaner-ready] .uael-table tbody {
	visibility: visible;
}
