/* Base circle */
.plan-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

/* Status colors */
.plan-dot-F {
  background-color: #1e88e5; /* Blue = Future */
}

.plan-dot-C {
  background-color: green; /* Orange = Current */
}

.plan-dot-N {
  background-color: red; /* Orange = Current */
}
