/* MoveDone Update 108 — Tips returns after plan completion */
.dashboard-nav .md108-tips-dashboard {
  position: relative;
  color: var(--md-muted);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.dashboard-nav .md108-tips-dashboard::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #ff5b55;
  transform: translateX(-50%);
  transition: width 160ms ease;
}

.dashboard-nav .md108-tips-dashboard:hover::after,
.dashboard-nav .md108-tips-dashboard:focus-visible::after {
  width: 100%;
}

.md108-tips-short { display: none; }

@media (max-width: 620px) {
  .md108-tips-full { display: none; }
  .md108-tips-short { display: inline; }
}
