.map-stop-route-actions {
  display: grid;
  padding: 9px 11px 4px;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  background: #f8faf9;
}

.map-stop-route-actions button {
  display: inline-flex;
  min-height: 37px;
  padding: 7px 9px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #087f72;
  font-size: .66rem;
  font-weight: 800;
  border: 1px solid #c7e1da;
  border-radius: 10px;
  background: #e9f7f3;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.map-stop-route-actions button:last-child {
  color: #fff;
  border-color: #00a896;
  background: linear-gradient(135deg, #00a896, #087f72);
}

.map-stop-route-actions button:hover,
.map-stop-route-actions button:focus-visible {
  outline: 0;
  transform: translateY(-1px);
}

.map-stop-route-actions button:first-child:hover,
.map-stop-route-actions button:first-child:focus-visible {
  border-color: #00a896;
  background: #dcf3ed;
}

.map-stop-route-actions button:last-child:hover,
.map-stop-route-actions button:last-child:focus-visible {
  background: linear-gradient(135deg, #07998b, #066b61);
}

.map-stop-route-actions button:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 168, 150, .18);
}

.map-stop-route-actions + .map-stop-popup-footer {
  padding-top: 4px;
}
