.route-color-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--day-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--day-color) 15%, white);
}

.day-card {
  border-left: 4px solid var(--day-color);
}

.route-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.legend-day {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #596b61;
  font-weight: 600;
}

.legend-day i {
  display: inline-block;
  width: 18px;
  height: 4px;
  border-radius: 4px;
}

@media (max-width: 680px) {
  .route-legend {
    gap: 8px 12px;
  }

  .legend-day {
    font-size: 11px;
  }
}
