.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  scrollbar-width: thin;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--color-surface-soft);
}

thead {
  background: var(--color-surface-soft);
}

th, td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

tr:nth-child(even) {
  background: rgba(33,107,47,0.03);
}

tr:hover {
  background: rgba(33,107,47,0.06);
}

.table-caption {
  margin-top: 0.75rem;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}
