.route-bars {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.route-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 76px;
  gap: 14px;
  align-items: center;
}

.route-row:hover {
  transform: translateX(3px);
}

.route-label {
  font-size: 13px;
  color: #d9e3ea;
}

.route-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.route-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.route-margin {
  text-align: right;
  font-weight: 700;
}

.utilization-stack {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  height: 22px;
}

.util-segment {
  border-radius: 999px;
}

.legend {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.legend-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.legend-item:hover {
  transform: translateX(2px);
}

.legend-label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.spark {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 220px;
  margin-top: 18px;
}

.spark-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.spark-bar {
  width: 100%;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, rgba(94, 155, 255, 0.95), rgba(75, 214, 255, 0.82));
}

.spark-label {
  color: var(--muted);
  font-size: 12px;
}

.fuel-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.fuel-notes strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}
