    /* ───── TABLE ───── */
    .table-wrap {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 900px;
    }

    thead th {
      padding: 12px 14px;
      text-align: left;
      background: rgba(255, 255, 255, .02);
      font-size: 10px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      white-space: nowrap;
    }

    tbody tr {
      border-bottom: 1px solid var(--border);
      transition: background .1s;
    }

    tbody tr:last-child {
      border-bottom: none;
    }

    tbody tr:hover {
      background: rgba(255, 255, 255, .02);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      position: relative;
      z-index: 10;
    }

    td {
      padding: 11px 14px;
      vertical-align: middle;
    }

    .td-item .item-name {
      font-weight: 600;
      font-size: 13px;
      color: var(--text);
    }

    .td-item .item-sub {
      font-size: 11px;
      color: var(--muted);
      margin-top: 3px;
    }

    .td-item .item-links {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 6px;
      margin-top: 4px;
      white-space: nowrap;
      min-width: 0;
    }

    .td-item .item-links a,
    .td-item .item-links span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--accent2);
      text-decoration: none;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
    }
