.btn-group button {
  background-color: #eee; /* Green background */
  border: 1px solid #eee; /* Green border */
  color: #222222; /* White text */
  cursor: pointer; /* Pointer/hand icon */
  float: left; /* Float the buttons side by side */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

.btn-group button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #086056;
  color: #FFF;
}

.first-btn {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.last-btn {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.active-btn {
  background-color: #086056 !important;
  color: #FFF !important;
}
