solverforge-ui 0.4.3

Frontend component library for SolverForge constraint-optimization applications
Documentation
/* ============================================================================
   SolverForge UI — Map Module Styles
   ============================================================================ */

.sf-map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.sf-map-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 14px;
  border-radius: var(--sf-radius-full, 9999px);
  font-size: 13px;
  font-family: var(--sf-font-body, sans-serif);
  z-index: 1000;
  pointer-events: none;
}

/* Vehicle home marker */
.sf-marker-vehicle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  color: white;
}

/* Visit marker */
.sf-marker-visit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 2px solid;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  font-size: 12px;
}

.sf-marker-visit.assigned {
  background: white;
}

.sf-marker-visit.unassigned {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #9ca3af;
}

/* Route stop number */
.sf-marker-stop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 2px solid;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--sf-font-mono, monospace);
}