.leaflet-control-attribution {
  display: none !important;
}

.map-type-switch {
  z-index: 1000;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.map-type-buttons {
  flex-direction: row;
  display: flex;
  overflow: hidden;
}

.map-type-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
  transition: all .3s;
  display: flex;
}

.map-type-item.active {
  background-color: #e6f7ff;
  border-color: #1890ff;
}

.map-type-button {
  cursor: pointer;
  background-color: #0000;
  border: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.map-type-icon {
  object-fit: cover;
  width: 72px;
  height: 48px;
}

.map-type-label {
  color: #333;
  text-align: center;
  margin-top: 1px;
  font-size: 12px;
}

.map-type-item.active .map-type-label {
  color: #1890ff;
}

