/* Directions / Routing Panel (Left Side below Header) */
.route-card {
  position: absolute;
  top: 250px;
  left: 20px;
  padding: 16px 20px;
  width: 340px;
}
.route-mode-selector {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.route-mode-btn {
  flex: 1;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #94A3B8;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.route-mode-btn.active {
  background: #D97706;
  color: #FFFFFF;
  border-color: #F59E0B;
}
.route-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.route-input-row {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px 10px;
}
.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}
.route-dot.start { background-color: #10B981; box-shadow: 0 0 8px #10B981; }
.route-dot.end { background-color: #EF4444; box-shadow: 0 0 8px #EF4444; }
.route-input-text {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 12px;
  padding: 6px 0;
}
.route-summary {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.route-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.route-stat-val {
  font-size: 16px;
  font-weight: 800;
  color: #06B6D4;
}
