.admin-users { overflow-x: auto; }

.table-users {
  width: 100%;
  border-collapse: collapse;
}

.table-users th, .table-users td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  vertical-align: middle;
}

.table-users .th-actions,
.table-users .td-actions {
  text-align: right;
  white-space: nowrap;
  width: 1%;
}

.actions { display: inline-flex; gap: 8px; align-items: center; }

.th-actions,
.td-actions {
  width: 1%;
  white-space: nowrap;
  text-align: right;
}

.actions {
  display: inline-flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.icon-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-btn.danger {
  opacity: 0.95;
}

.icon-btn:disabled,
.icon-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none; /* for <a> disabled behavior */
}

.icon-btn svg { width: 18px; height: 18px; }

.icon-btn:hover { background: rgba(0,0,0,.06); }
.icon-btn.danger:hover { background: rgba(255,0,0,.10); }
.icon-btn:disabled { opacity: .35; cursor: not-allowed; }

.pill {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  margin-left: 8px;
  border: 1px solid rgba(0,0,0,.12);
}

.pill-me { opacity: .85; }
.pill-super { font-weight: 700; }
.pill-ok { }
.pill-off { opacity: .7; }

tr.is-me {
  background: rgba(0, 0, 0, .03);
}