/* redirect-checker.css — per-tool styles for the Redirect Chain Checker.
   Defines only the two classes this tool needs; everything else reuses
   shared components (.alert, .badge, .stat-grid, .table). */

/* Stack of flag alerts with vertical rhythm between them. */
.rc-flags {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Long URLs in stat cards and hop-table cells: wrap anywhere, never
   overflow the page. Monospace for readability of paths/tokens. */
.rc-url-cell {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: var(--font-mono);
}
