How can I change the border-color of a radio button in Chrome & Firefox using only CSS? I've added the following to my css file and it doesn't change the appearance from the browser default settings.
input[type="radio"] {
border: 1px solid $ltbrown;
}
I've also tried "outline" instead of border, but that creates a square border around the default circular border.