I used :hover and then accent-color but it gives color to whole button when it's clicked. I just want only the circle to change color when I hover over. for example like in the picture button is not clicked but circle changes color to blue on hover.
<input type="radio" >
input:hover{
accent-color: blue;
}
it changes color only when button is clicked and you hover over it. I want only circle(outline) to change color on hover and not the whole when its clicked.
I hope this could help you.