:root {
  --bg-color: #0d0f12;
  --panel-bg: rgba(22, 26, 31, 0.7);
  --panel-border: rgba(50, 60, 70, 0.5);
  --text-main: #e2e8f0;
  --text-muted: #8b9bb4;
  --accent-primary: #00f0ff;
  --accent-primary-glow: rgba(0, 240, 255, 0.3);
  --accent-secondary: #ff0055;
  --accent-secondary-glow: rgba(255, 0, 85, 0.3);
  --accent-success: #00ff88;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.dark-theme {
  background-color: var(--bg-color);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(0, 240, 255, 0.04) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 0, 85, 0.04) 0%, transparent 25%),
    linear-gradient(180deg, #0a0b0d 0%, #111418 100%);
  color: var(--text-main);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mt-4 { margin-top: 1rem; }

/* Top Navigation */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(13, 15, 18, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.status-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-success);
  letter-spacing: 0.05em;
}

/* Dashboard Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  flex: 1;
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* Glass Panels */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}

.glass-panel:hover {
  border-color: rgba(100, 120, 140, 0.6);
}

.highlight-panel {
  background: linear-gradient(180deg, rgba(22, 26, 31, 0.9) 0%, rgba(15, 18, 22, 0.8) 100%);
  border-top: 2px solid var(--accent-primary);
  box-shadow: 0 -2px 15px rgba(0, 240, 255, 0.1), var(--shadow-lg);
}

.panel-header {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.panel-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.with-status {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.live-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  border-radius: 4px;
}

/* Forms & Inputs */
.field-group, .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field span, .subhead {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.cyber-input {
  background: rgba(10, 12, 15, 0.8);
  border: 1px solid var(--panel-border);
  color: var(--text-main);
  padding: 0.75rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transition: all 0.2s;
  width: 100%;
}

.cyber-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.15);
}

.upload-wrapper {
  background: rgba(10, 12, 15, 0.8);
  border: 1px dashed var(--panel-border);
  border-radius: 6px;
  padding: 0.5rem;
  transition: border-color 0.2s;
}

.upload-wrapper:hover {
  border-color: var(--accent-primary);
}

.upload-wrapper input[type="file"]::file-selector-button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  color: #fff;
  padding: 0.4rem 0.8rem;
  margin-right: 1rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  transition: background 0.2s;
}

.upload-wrapper input[type="file"]::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.noise-panel {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border-left: 3px solid #fbd38d;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: var(--font-sans);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(1);
}

.form-actions, .replay-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-primary {
  background: var(--accent-primary);
  color: #000;
  width: 100%;
}

.btn-primary:hover:not(:disabled) {
  background: #33f3ff;
  transform: translateY(-1px);
}

.btn-glow {
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.btn-glow:hover:not(:disabled) {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--panel-border);
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-danger {
  background: rgba(255, 0, 85, 0.15);
  color: #ffb3c6;
  border: 1px solid rgba(255, 0, 85, 0.3);
}

.btn-danger:hover:not(:disabled) {
  background: rgba(255, 0, 85, 0.25);
  border-color: rgba(255, 0, 85, 0.5);
}

/* System Status Msgs */
.system-status-msg {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

/* Terminal Blocks */
.terminal-block {
  background: #0a0c0f;
  border: 1px solid #1a1e24;
  border-radius: 6px;
  margin-top: 1rem;
  overflow: hidden;
}

.terminal-header {
  background: #12151a;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  border-bottom: 1px solid #1a1e24;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terminal-block pre {
  padding: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #a0aec0;
  white-space: pre-wrap;
  margin: 0;
  max-height: 250px;
  overflow-y: auto;
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* Jetson Live Specific */
.jetson-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1400px) {
  .jetson-grid {
    grid-template-columns: 1fr;
  }
}

.feed-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Gauges HUD Overlay */
.imu-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  z-index: 20;
  background: rgba(10, 12, 15, 0.65);
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.gauge-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gauge-mini {
  width: 60px;
  height: 60px;
}
.gauge-svg {
  width: 100%;
  height: 100%;
}
.gauge-val {
  stroke-dasharray: 236;
  stroke-dashoffset: 236; 
  transition: stroke-dashoffset 0.1s linear, stroke 0.2s ease;
}
.gauge-mini .gauge-val {
  stroke-width: 14; 
}
.gauge-mini .gauge-bg {
  stroke-width: 14; 
}
.gauge-label-center {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gauge-mini .gauge-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.gauge-mini .gauge-unit {
  font-size: 0.55rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.card-title-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(10, 12, 15, 0.6);
  border-bottom: 1px solid var(--panel-border);
}

.card-title-bar h3 {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-secondary);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--accent-secondary);
}

.dot-blue {
  width: 6px;
  height: 6px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--accent-primary);
}

.legend-mini {
  margin-left: auto;
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.leg-color {
  width: 10px;
  height: 3px;
  border-radius: 1px;
}
.leg-color.blue { background: #00f0ff; }
.leg-color.red { background: #ff0055; }
.leg-color.green { background: #00ff88; }

.visual-stage {
  position: relative;
  background: #000;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 1;
}

.visual-stage img, .visual-stage svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#ground-overlay,
#replay-trajectory {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.trajectory-stage {
  background-color: #050608;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 10;
  opacity: 0.3;
}

.camera-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0,0,0,0.5);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  pointer-events: none;
  z-index: 10;
}

.replay-camera-overlay {
  background: rgba(255, 0, 85, 0.18);
  border: 1px solid rgba(255, 0, 85, 0.35);
  color: #ffd6e3;
}

.drone-hud {
  position: absolute;
  z-index: 12;
  display: flex;
  gap: 0.5rem;
  pointer-events: none;
}

.drone-hud-top {
  top: 1rem;
  left: 1rem;
  flex-wrap: wrap;
}

.drone-hud-bottom {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  flex-direction: column;
  align-items: flex-start;
}

.drone-hud-chip,
.drone-hud-line {
  background: rgba(8, 11, 14, 0.72);
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 6px;
  color: #d9f7ff;
  font-family: var(--font-mono);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.08);
  backdrop-filter: blur(4px);
}

.drone-hud-chip {
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.drone-hud-line {
  padding: 0.4rem 0.65rem;
  font-size: 0.74rem;
  line-height: 1.35;
}

.result-trajectory-row .feed-card {
  min-height: 320px;
}

.replay-trajectory-stage {
  min-height: 320px;
}

/* Results Area */
.data-readouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.readout-box {
  background: rgba(10, 12, 15, 0.6);
  border: 1px solid var(--panel-border);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.readout-highlight {
  background: rgba(0, 240, 255, 0.05);
  border-color: rgba(0, 240, 255, 0.2);
}

.readout-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.readout-value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
}

.highlight-text {
  color: var(--accent-primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.result-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.live-error-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.live-error-card {
  background: rgba(10, 12, 15, 0.72);
  border: 1px solid rgba(0, 240, 255, 0.14);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.live-error-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.live-error-value {
  color: #f5fbff;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: 1.35;
}

#live-error-stage-card[data-stage="good"] {
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.08);
}

#live-error-stage-card[data-stage="plausible"] {
  border-color: rgba(255, 204, 0, 0.34);
  background: rgba(255, 204, 0, 0.08);
}

#live-error-stage-card[data-stage="weak"] {
  border-color: rgba(255, 122, 0, 0.34);
  background: rgba(255, 122, 0, 0.08);
}

#live-error-stage-card[data-stage="reject"] {
  border-color: rgba(255, 0, 85, 0.34);
  background: rgba(255, 0, 85, 0.08);
}

@media (max-width: 800px) {
  .data-readouts, .result-visuals, .live-error-strip {
    grid-template-columns: 1fr;
  }
}

.external-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
  transition: opacity 0.2s;
}

.external-link:hover {
  opacity: 0.8;
}

.overlay-summary-chip {
  margin-left: auto;
  margin-right: 0.75rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 136, 0.28);
  background: rgba(0, 255, 136, 0.08);
  color: #d5ffe9;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
}

.result-ground {
  min-height: 200px;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px dashed var(--panel-border);
}

.hidden {
  display: none !important;
}

/* Toggle Switch specific for replay clear cache */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(10, 12, 15, 0.8);
  border: 1px solid var(--panel-border);
  transition: .4s;
  border-radius: 24px;
}

.toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background-color: var(--text-muted);
  transition: .4s;
  border-radius: 50%;
}

.toggle-switch input:checked + .slider {
  background-color: rgba(0, 240, 255, 0.2);
  border-color: var(--accent-primary);
}

.toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
  background-color: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}

/* Jetson Controls Bar */
.jetson-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
}

.jetson-controls .control-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.jetson-controls .compact {
  margin: 0;
  gap: 0.5rem;
}

.noise-level-group {
  display: flex;
  gap: 0.25rem;
}

.btn-xs {
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--panel-border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-xs:hover {
  border-color: var(--accent-primary);
  color: var(--text-main);
}

.btn-xs.active,
.noise-level-btn.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

#pause-stream-btn.paused {
  background: rgba(255, 0, 85, 0.15);
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
}

/* Scrollbar customization */
.custom-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* SVG Colors Overrides for JS Injection */
.overlay-label {
  font-size: 14px;
  font-weight: 800;
  paint-order: stroke;
  stroke: rgba(10, 12, 15, 0.85); /* Dark stroke instead of light */
  stroke-width: 4px;
  stroke-linejoin: round;
  font-family: var(--font-mono);
}

.overlay-label-sub {
  font-size: 12px;
  font-weight: 700;
}

.overlay-guide {
  stroke-dasharray: 6 8;
}

.overlay-guide-secondary {
  stroke-dasharray: 4 6;
}

.pose-marker line,
.pose-marker circle {
  filter: drop-shadow(0 0 8px currentColor);
}

.pose-marker .pose-uncertainty-ring,
.pose-marker-gnss .gnss-sample {
  filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.35));
}

.trajectory-axis-label,
.trajectory-legend-label {
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  fill: #8b9bb4;
}

.trajectory-caption {
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 700;
  fill: #8b9bb4;
}

.trajectory-track {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 2px currentColor);
}

.trajectory-track-halo {
  filter: none;
  opacity: 0.54;
}

.trajectory-track-input {
  opacity: 0.74;
}

.trajectory-track-refined-halo {
  filter: none;
  opacity: 0.48;
}

.trajectory-track-refined {
  filter: drop-shadow(0 0 2px rgba(255, 0, 85, 0.28));
}

.trajectory-track-gt {
  stroke-dasharray: 7 11;
  opacity: 0.62;
  filter: drop-shadow(0 0 2px rgba(0, 255, 136, 0.28));
}

.ground-reticle-line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ground-reticle-label {
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 700;
  fill: #d9f7ff;
  paint-order: stroke;
  stroke: rgba(8, 11, 14, 0.9);
  stroke-width: 4px;
}

.ground-reticle-label-sub {
  font-size: 12px;
}
