While attempting to utilize the react-bootstraps accordion component, I encountered the necessity of the import statement
import "bootstrap/dist/css/bootstrap.min.css";
in order for the accordion to function properly. However, upon adding this import, my custom CSS styles were overridden by the bootstrap styles. Is there a method to ensure that my CSS takes precedence over the bootstrap CSS? Currently, I link my stylesheets using <link href="%PUBLIC_URL%/css/style.css" rel="stylesheet"/>
in my index.html file.