/* Spoiler styles - greyed out text that reveals on click */
.spoiler-text {
  background-color: #888;
  color: #888;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s, color 0.2s;
  padding: 2px 4px;
  border-radius: 3px;
}

.spoiler-text.revealed {
  background-color: transparent;
  color: inherit;
  cursor: text;
  user-select: text;
}
