.legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid #dce7f2;
  border-radius: 10px;
  background: #f8fbff;
  color: #42536a;
  font-size: 12px;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.legend b {
  font-weight: 800;
}

.legend .legend-line {
  position: relative;
  width: 30px;
  height: 12px;
  flex: 0 0 30px;
  background: transparent;
  --legend-color: #64748b;
}

.legend .legend-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  border-top: 3px solid var(--legend-color);
}

.legend .legend-line::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--legend-color);
}

.legend .legend-line.dashed::before {
  border-top-style: dashed;
}

.legend .legend-line.dashed::after {
  display: none;
}

@media (max-width: 620px) {
  .legend {
    gap: 8px 12px;
    padding: 9px 10px;
  }
}
