#userTable thead th,
#rolesTable thead th,
#pagesTable thead th {
	font-weight: 400 !important;
	/* normal weight */
	transition: background-color 0.3s ease;
}

#userTable thead th:hover,
#rolesTable thead th:hover,
#pagesTable thead th:hover {
	background-color: #f0f8ff;
	/* light blue hover */
	cursor: pointer;
}

#userTable tbody tr:hover td,
#pagesTable tbody tr:hover td {
	background-color: #f3f0eb !important;
	transition: background-color 0.3s ease;
	cursor: default;
	/* change to pointer if rows are clickable */
	text-align: center;
}

/* Row hover styling */
/*table.dataTable tbody tr:hover td {
	background-color: #f3f0eb !important;
	transition: background-color 0.3s ease;
	cursor: default;
	 change to pointer if rows are clickable 
	text-align: center;
}*/