/* Remove green from menu items/refine button style */
.menu-item a, .menu-item a:visited {
  background: transparent !important;
  border-radius: 18px;
  color: #222 !important;
  box-shadow: 0 2px 8px rgba(30,60,90,0.09);
  margin: 0 6px;
  padding: 8px 22px;
  transition: background .2s;
}
.menu-item a:hover, .menu-item a.active {
  background: #2196F3 !important; /* or another blue you prefer */
  color: #fff !important;
  box-shadow: 0 0 8px #2196F3, 0 1px 10px rgba(30,80,140,0.08);
}