I know there are a lot of such topics and examples, and I've looked through a lot of them. But I can't make custom pagination for the slider. My custom pagination just doesn't display. I can't even change styles of regular pagination. It must be some silly mistake. But I can't find it for several hours. Please help me if you can. Swiper version 8.4.5
<div className="relative">
<Swiper
className="my-swiper"
spaceBetween={10}
slidesPerView={"auto"}
navigation
pagination={{
el: ".swiper-pagination",
type: "bullets",
clickable: true,
bulletClass: "bg-amber-400", //tailwind styles don't work here?
bulletActiveClass: "bg-green-400",
}}
>
{/* Slides go here */}
</Swiper>
<div className="absolute bottom-0 left-0 w-full"> //does not appear
<div className="swiper-pagination"></div>
</div>
</div>