/* ==========================================================================
   Site-wide override for Hello Elementor's reset.css default button hover.
   Parent rule (assets/css/reset.css):
     [type=button]:hover,[type=submit]:hover,button:hover{
       background-color:#c36; color:#fff;
     }
   That pink hits ANY native button/submit the theme/Elementor widget doesn't
   already restyle. Replaced with the real brand navy from the Elementor kit
   (Primary #183364) instead of pink. Loaded after 'hello-elementor' so it
   wins on source order; selectors also match 1:1 to win on specificity.
   ========================================================================== */
[type="button"]:focus,
[type="button"]:hover,
[type="submit"]:focus,
[type="submit"]:hover,
button:focus,
button:hover {
	background-color: #183364;
	border-color: #183364;
	color: #fff;
}
