I was trying to customize the checkbox height and width but after generating the pdf no custom CSS style is working in a pdf generation it gets overridden by the package's default CSS.
<head>
<style>
input[type='checkbox']{
width:25px;
height:25px;
outline: 2px solid #c00;
}
</style>
</head>
<body>
Hello Roshan <input type='checkbox' checked /> check
<div style='border:1px solid red'><span >Test Roshan</span></div>
</body>
it looks perfectly fine on the chrome browser but while generating the pdf the non of customize style is working.
Please help me out.

I was trying to customize the checkbox height and width but after generating the pdf no custom CSS style is working in a pdf generation it gets overridden by the package's default CSS.
it looks perfectly fine on the chrome browser but while generating the pdf the non of customize style is working.
Please help me out.