/* Quest Tracker: a small always-visible summary of whichever quest line is being tracked (see
   window-quest-tracker.js) -- quest name, current mission, and its objective hint, stacked
   plainly since there is nothing to lay out side by side here. */
#quest-tracker-window .body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 8px;
}

.quest-tracker-quest-name {
  color: #e0c060;
  font-size: 11px;
  font-weight: bold;
}

.quest-tracker-mission-name {
  color: #fff;
  font-size: 11px;
  font-weight: bold;
}

.quest-tracker-hint {
  color: #ccc;
  font-size: 11px;
  line-height: 1.4;
}
