.titan-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--titan-border);
  border-radius: var(--titan-radius-medium);
}

.titan-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--titan-surface);
  font-size: 14px;
}

.titan-table th,
.titan-table td {
  padding:
    15px
    14px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--titan-border);
}

.titan-table th {
  color: var(--titan-muted);
  background: var(--titan-surface-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.titan-table tbody tr {
  transition: background 140ms ease;
}

.titan-table tbody tr:hover {
  background: #fbfaf6;
}

.titan-table tbody tr:last-child td {
  border-bottom: 0;
}
/* ==========================================
   TITAN V9 — Table Readability Pass 2
========================================== */
@media (min-width: 861px) {
  .titan-table {
    font-size: 15px;
  }

  .titan-table th {
    font-size: 12px;
  }
}
