/* NOTES NAV BAR */
.notesBar {
  display: flex;
  align-items: center;
  gap: 8px;

  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;

  padding: 8px 10px;
}

.notesBar button {
  font-size: 0.95rem;
  padding: 2px 10px;
  border-radius: 10px;
}

.notesBar select {
  flex: 1;
  min-width: 0;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  background: var(--surface);
  color: var(--text);
}

/* Notes panes (light defaults; your other CSS can override) */
.notesTop, .notesBottom {
  margin-top: 10px;
}

.notesCommentaryPane p {
  margin: 0 0 10px;
  line-height: 1.55;
}
.notesCommentaryPane p:last-child {
  margin-bottom: 0;
}

/* Mock link styling for [[...]] */
.mock-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  white-space: nowrap;
}
.mock-link:hover {
  text-decoration-thickness: 2px;
}
