/* Ensure all buttons turn orange on hover globally */
button:hover, 
.btn:hover, 
a.rounded-btn:hover, 
input[type="submit"]:hover,
input[type="button"]:hover,
[role="button"]:hover {
    background-color: #f97316 !important; /* Orange 500 */
    border-color: #f97316 !important;
    color: #ffffff !important;
}