.table-tools{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:10px;
    }
    .filters{
      display:flex; gap:8px; flex-wrap:wrap;
    }

    
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border:1px solid var(--border);
      border-radius: var(--radius-lg);
      background: var(--panel);
    }
    thead th{
      text-align:left;
      font-size:12px;
      color:var(--muted);
      padding:12px 12px;
      border-bottom:1px solid var(--border);
      background: linear-gradient(180deg, rgba(99,91,255,.08), transparent 85%);
    }
    tbody td{
      padding:12px 12px;
      border-bottom:1px solid var(--border);
      font-size:13px;
      vertical-align:middle;
    }
    tbody tr:hover{
      background: rgba(99,91,255,.06);
      cursor:pointer;
    }
    tbody tr:last-child td{ border-bottom:none; }
