.route-list {
  display: grid;
  gap: 6px;
}

.route-button {
  width: 100%;
  min-width: 0;
  border: 1px solid #dfe5e9;
  border-radius: 6px;
  background: #f8fafb;
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  text-align: left;
  color: #43515f;
}

.route-button:hover {
  border-color: #84bdb5;
  background: #f1faf8;
}

.route-button strong {
  font-size: 10px;
  color: var(--primary);
}

.route-button span {
  font: 11px/1.35 ui-monospace, SFMono-Regular, Consolas, monospace;
  overflow-wrap: anywhere;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 150px;
  padding: 28px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 7px;
  color: var(--muted);
}

.empty-state strong {
  color: #394957;
}

.button:disabled,
.route-button:disabled {
  cursor: not-allowed;
  opacity: .55;
}
