header > div,
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

header nav a { white-space: nowrap; }
.identity, .hint { color: #607086; font-size: 13px; }

.table-scroll {
  overflow-x: auto;
  border: 1px solid #d9e4f2;
  border-radius: 10px;
}

.status-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  background: #fff;
}

.status-table th,
.status-table td {
  padding: 8px;
  border-bottom: 1px solid #e7edf5;
  text-align: left;
  vertical-align: middle;
}

.status-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #fff;
  background: #2f6fc5;
}

.status-table input,
.status-table select {
  box-sizing: border-box;
  width: 100%;
  min-width: 112px;
  padding: 7px 8px;
  border: 1px solid #c7d5e8;
  border-radius: 6px;
  background: #fff;
}

.status-table .anchor-name { min-width: 140px; font-weight: 700; }
.status-table .anchor-id { min-width: 105px; color: #526275; font-variant-numeric: tabular-nums; }
.status-history { display: grid; gap: 10px; margin-top: 14px; }

.history-grid {
  display: grid;
  grid-template-columns: 150px minmax(120px, 1fr) 110px minmax(160px, 1fr);
  gap: 8px 14px;
  padding: 11px 14px;
  border: 1px solid #e0e8f3;
  border-radius: 8px;
  background: #fff;
}

.history-grid small { color: #718096; }
@media (max-width: 760px) { .history-grid { grid-template-columns: 1fr; } }
