/* Users Page Styles */

.user-name-cell {
  display: flex;
  align-items: center;
}

.avatar-small {
  width: 32px;
  height: 32px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.75rem;
}

.admin-role {
  color: var(--primary-blue);
  font-weight: 600;
}

.user-role {
  color: var(--text-secondary);
}

.status-active {
  color: var(--success);
  font-weight: 500;
}

.status-inactive {
  color: var(--danger);
  font-weight: 500;
}