/* =========================================================
   7. Tables
   ========================================================= */
.table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.table-wrap::-webkit-scrollbar {
  height: 8px;
}

.table-wrap::-webkit-scrollbar-track {
  background: var(--surface-2);
}

.table-wrap::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
}

@media (max-width: 768px) {
  table {
    font-size: 0.85rem;
  }
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

@media (max-width: 768px) {
  th,
  td {
    padding: 10px 8px;
  }
}

th {
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  word-break: break-word;
}

@media (max-width: 480px) {
  th {
    letter-spacing: 0.02em;
  }
}

tr:last-child td {
  border-bottom: 0;
}
