.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
}

.btn-group button {
  background-color: #abb7bf; /* Green background #04AA6D */
  border: 1px solid #aaaaaa; /* Green border */
  color: blue; /* White text */
  font: 15px Arial, sans-serif;
  padding: 6px 15px 6px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  float: left; /* Float the buttons side by side */
  border-radius: 5px;
}

.btn-group button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #3e8e41;
  color: white;
}

.btn-group a:hover {
  color: white;
}