/* Debug Modal — table view of agent capabilities */

.debug-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.debug-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 10px;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-light);
}

.debug-table thead th:nth-child(3),
.debug-table thead th:nth-child(4) {
  text-align: center;
  width: 80px;
}

.debug-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.debug-table tbody tr:last-child {
  border-bottom: none;
}

.debug-table td {
  padding: 8px 10px;
  vertical-align: top;
}

.debug-item-name {
  font-weight: 600;
  color: var(--text);
  font-family: monospace;
  font-size: 12px;
  display: block;
}

.debug-item-desc {
  color: var(--text-muted);
  font-size: 11px;
  display: block;
  margin-top: 2px;
  line-height: 1.3;
}

.debug-type-cell {
  color: var(--text-muted);
  font-size: 11px;
  white-space: nowrap;
}

.debug-check-cell {
  text-align: center;
}

.debug-check {
  color: var(--success);
  font-size: 14px;
}

.debug-category-badge {
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--bg-lighter);
  color: var(--text-muted);
  margin-left: 4px;
}

.debug-loading {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 24px;
}
