/*
 * http-status-checker.css — per-tool styles for the Bulk HTTP Status Checker.
 * Defines only the tool-specific classes; everything else reuses the design system.
 */

/* Skipped (invalid / duplicate / over-limit) URLs — disc list inside the warning alert. */
.hsc-skipped-list {
  margin: var(--space-1) 0 0;
  padding-left: var(--space-4);
  list-style: disc;
}
.hsc-skipped-list li {
  margin-bottom: var(--space-1);
  font-size: 13px;
}

/* The URL token inside each skipped line: monospace, wraps so long URLs never overflow. */
.hsc-skipped-url {
  font-family: var(--font-mono);
  overflow-wrap: anywhere;
}

/* Truncated URL cell in the results table. JS sets title= for the full value on hover. */
.hsc-url-cell {
  display: inline-block;
  max-width: 32ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
