/* Audenzia Trust — custom CSS beyond Tailwind utilities */

/* Subtle table row hover */
.table-hover tr:hover td {
  background-color: #f8fafc;
}

/* Token display */
.token-url {
  word-break: break-all;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Flash messages */
.flash-success {
  background-color: #dcfce7;
  border-color: #86efac;
  color: #166534;
}
.flash-error {
  background-color: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}

/* Nav active state */
.nav-active {
  font-weight: 600;
  border-bottom: 2px solid #1e3a5f;
}
