/* Endpoints table — the API endpoint / key-value listing used on the landing
   and public selector pages. */
.endpoints {
  margin-top: 20px;
}
.endpoints table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.endpoints td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}
.endpoints td.method {
  font-family: var(--mono);
  color: var(--info);
  width: 64px;
}
.endpoints td.path {
  font-family: var(--mono);
  color: var(--text);
}
.endpoints td.desc {
  color: var(--text-dim);
}
.endpoints td.value {
  font-family: var(--mono);
  color: var(--text);
}
.endpoints tr:last-child td {
  border-bottom: none;
}
