/* Auto-number bibliography entries */
#refs .csl-entry {
  counter-increment: bibliography;
  position: relative;
}

#refs .csl-entry::before {
  content: "[" counter(bibliography) "] ";
  font-weight: bold;
  color: #666;
  margin-right: 0.5em;
}

/* Initialize the counter */
#refs {
  counter-reset: bibliography;
}

/* Simple author highlighting styles */

/* My name: bold and underlined */
.my-name {
  font-weight: bold;
  text-decoration: underline;
}

/* Collaborators (students/postdocs): bold and italics */
.collaborator-name {
  font-weight: bold;
  font-style: italic;
}

/* Special collaborators: italics and underlined */
.special-collaborator {
  font-style: italic;
  text-decoration: underline;
}
