.page-goi .toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.page-goi .toolbar input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--heading);
  font: inherit;
}

.page-goi .toolbar input::placeholder {
  color: #778195;
}

.page-goi .results-meta {
  color: var(--text-muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.page-goi .table-shell {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.page-goi .goi-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.page-goi .goi-table th,
.page-goi .goi-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.94rem;
  line-height: 1.45;
}

.page-goi .goi-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(247, 249, 252, 0.96);
  backdrop-filter: blur(8px);
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-goi .goi-table tbody tr:hover {
  background: #fbfdff;
}

.page-goi .goi-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-goi .goi-table td:first-child,
.page-goi .goi-table th:first-child {
  width: 72px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.page-goi .goi-table td:nth-child(2) {
  width: 18%;
  font-weight: 600;
  color: var(--heading);
}

.page-goi .goi-table td:nth-child(3) {
  width: 18%;
  color: var(--text-muted);
}

.page-goi .goi-table td:nth-child(4) {
  min-width: 280px;
}

.page-goi .empty-state {
  padding: 22px 16px;
  text-align: center;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .page-goi .toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .page-goi .results-meta {
    white-space: normal;
  }
}
