/* ═══════════════════════════════════════════
   MY ROUTE — now the right column of the My Day
   split pane (scheduling/panes/_route_column),
   not its own page. .route-column replaces the
   old .route-page as the outer wrapper — no
   centered max-width, it fills its grid column.
═══════════════════════════════════════════ */
.route-column {
  min-width: 0;
}
.route-salesperson {
  font-size: 12px;
  color: var(--text-3);
}

/* Summary bar */
.route-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-2);
}
.route-summary i {
  color: var(--brass-lo);
  margin-right: 4px;
}

/* Stop list */
.route-stops {
  display: flex;
  flex-direction: column;
}

/* Stop cards */
.route-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--brass);
  border-radius: var(--card-radius);
  padding: var(--card-padding-compact);
}
.route-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.route-stop-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brass-lo);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.route-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.route-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
}
.route-contact-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Action links (phone, directions) */
.route-card-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
  padding-left: 34px;
}
.route-action-link {
  font-size: 13px;
  color: var(--brass-lo);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 12px;
}
.route-action-link:hover {
  color: var(--brass-lo);
}
.route-action-link i {
  width: 14px;
  text-align: center;
}

/* Service type badges */
.route-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-left: 34px;
}
.route-service-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--brass-pill);
  color: var(--brass-lo);
  font-weight: 500;
}

/* Connector between cards */
.route-connector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  margin: 0 auto;
  max-width: 200px;
}
.route-connector-line {
  flex: 1;
  border-top: 2px dotted var(--border);
}
.route-connector-label {
  font-size: 11px;
  color: var(--text-3);
  white-space: nowrap;
}

/* Route integrity strip (admin only) — Scheduling::RouteIntegrity findings */
.route-integrity {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.route-integrity-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.route-integrity-item i {
  color: var(--brass-lo);
  margin-top: 2px;
}
.route-integrity-subject {
  font-size: 13px;
  color: var(--text-1);
}
.route-integrity-action {
  font-size: 12px;
  color: var(--text-3);
}

/* Unroutable visits — on the schedule, not on the map */
.route-exceptions {
  background: var(--surface);
  border: 1px solid var(--brass-lo);
  border-left: 3px solid var(--brass-lo);
  border-radius: var(--r-md);
  padding: 14px;
  margin-bottom: 16px;
}
.route-exceptions-head {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.route-exceptions-head i {
  color: var(--brass-lo);
}
.route-exceptions-note {
  margin: 6px 0 10px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.45;
}
.route-exception {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.route-exception-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.route-exception-addr {
  font-size: 13px;
  color: var(--text-2);
}
.route-exception-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Approximate-travel + no-auto-change disclosure */
.route-disclosure {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-3);
}

/* Empty state */
.route-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
}
.route-empty-icon {
  font-size: 28px;
  color: var(--text-3);
  margin-bottom: 8px;
}
.route-empty p {
  margin: 0;
  font-size: 14px;
  color: var(--text-3);
}

/* Sticky navigate button */
.route-nav-bar {
  position: sticky;
  bottom: 0;
  padding: 12px 0;
  background: var(--bg);
  z-index: 10;
}
.route-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--brass-lo);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--r-md);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s;
}
.route-nav-btn:hover {
  background: var(--brass-lo);
  color: #fff;
}
