Currently, I am working on a ReactJS project. Initially, the entire project was designed using pure CSS. However, I decided to incorporate a small Antd component into my project. Following the provided instructions, I imported the component like this in one of my ReactJS components:
import { Pagination } from 'antd';
import 'antd/dist/antd.css';
The problem I encountered is that the existing CSS of my project is being overridden by Ant Design. Could you please suggest a solution for this issue?