/* Honey Grove Chamber: Grey Buttons with White Text */
.Button,
input[type="submit"],
input[type="button"],
button {
  background-color: #878787 !important; /* Grey */
  color: #FFFFFF !important; /* White text */
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  font-size: 1.1em !important;
  text-transform: uppercase;
  cursor: pointer;
}

/* Hover effect: slightly darker grey */
.Button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  background-color: #6E6E6E !important; /* Darker grey */
}