
.table-wrap {
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow2);
  overflow: hidden;
  margin-top: 24px;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


.table-scroll::-webkit-scrollbar {
  height: 10px;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.10);
  border-radius: 999px;
}

.table-scroll::-webkit-scrollbar-track {
  background: rgba(0,0,0,.20);
  border-radius: 999px;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px; 
}

.table thead th {
  text-align: left;
  font-size: 12px;
  color: rgba(238,240,255,.70);
  padding: 14px 16px;
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
  font-weight: 600;
}

.table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(238,240,255,.86);
  font-size: 13px;
  vertical-align: middle;
}

.table tbody tr:hover td {
  background: rgba(255,255,255,.03);
}

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


.pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pillbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size: 12.5px;
  color: rgba(238,240,255,.88);
  transition: all .18s var(--ease);
}

.pillbtn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.20);
}


.team-member-card {
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 24px;
  text-align: center;
  transition: transform .25s var(--ease);
}

.team-member-card:hover {
  transform: translateY(-6px);
}


.section {
  margin-top: 32px;
}

.block {
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .table thead th,
  .table tbody td {
    padding: 12px 10px;
    font-size: 12.5px;
  }

  .pillbtn {
    padding: 8px 12px;
    font-size: 12px;
  }
}


@media (max-width: 768px) {
  .table-scroll {
    overflow-x: hidden;
  }
  .table {
    min-width: 0;
  }

  .table thead {
    display: none;
  }

  .table, .table tbody, .table tr, .table td {
    display: block;
    width: 100%;
  }
  
  .table tbody tr {
    margin-bottom: 16px;
    border-radius: var(--r, 18px);
    border: 1px solid var(--stroke, rgba(255, 255, 255, 0.1));
    background: var(--glass, rgba(255, 255, 255, 0.04));
    padding: 8px;
    box-shadow: var(--shadow2);
  }
  
  .table tbody tr:last-child {
      margin-bottom: 0;
  }

  .table tbody td {
    padding: 0;
    border: none;
    border-bottom: 1px solid var(--stroke, rgba(255, 255, 255, 0.08));
  }
  
  .table tbody tr td:last-child {
      border-bottom: none;
  }

  .table tbody td {
    display: grid;
    grid-template-columns: 110px 1fr; 
    gap: 16px;
    align-items: center;
    padding: 12px;
    font-size: 14px;
  }

  .table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--muted, rgba(238, 240, 255, 0.72));
    font-size: 12px;
  }

  .table td[data-label="Name"] {
    font-size: 16px;
    font-weight: bold;
  }
  
  .table td[data-label="Email"] {
    word-break: break-all;
  }
}
