.hi {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  color: currentColor;
}

.agent-badge {
  display: inline-flex;
  align-items: center;
  height: 19px;
  padding: 2px 10px;
  border: 1px solid #cfe9da;
  border-radius: 9999px;
  background: var(--agent-green);
  color: var(--agent-green-text);
  font-size: 11px;
  font-weight: 500;
}

.field {
  margin-bottom: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.flash {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.8125rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
  animation: flash-in 0.2s ease;
}

@keyframes flash-in {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
}
