.leaflet-bar button {
  background-color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
  text-align: center;
  color: black;
  cursor: pointer;
  font-size: 24px;
}

.leaflet-bar button:hover {
  background-color: #f4f4f4;
}

.leaflet-bar button:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar button:last-of-type {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar.disabled,
.leaflet-bar button.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.easy-button-button .button-state {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.leaflet-touch .leaflet-bar button {
  width: 44px;
  height: 44px;
}
