/* Minimal admin CSS kept for things Tailwind doesn't cover in templates. */

/* HTMX indicator */
.htmx-indicator {
  opacity: 0;
  transition: opacity 500ms ease-in;
  width: 25px;
  height: 25px;
  margin-left: 10px;
  margin-top: 2px;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  opacity: 1;
}

/* Error formatting (useful for debug output blocks) */
div.error {
  color: darkred;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  white-space: pre;
  font-size: initial;
}

/* Column sizing helpers used by <colgroup> in admin tables */
.col-origin {
  min-width: 80px;
}

.col-status {
  min-width: 120px;
}

.col-vi {
  width: 60px;
}
