/* Minimal extras on top of Tailwind play. Most styling is utility classes. */

[x-cloak] { display: none !important; }

/* htmx loading indicator */
.htmx-indicator { opacity: 0; transition: opacity 200ms ease; }
.htmx-request .htmx-indicator { opacity: 1; }
.htmx-request.htmx-indicator { opacity: 1; }

/* Table row hover */
table tbody tr:hover {
  background-color: rgba(31, 140, 159, 0.04);
}
