/* Spoiler styles - grey text that reveals on click */
.spoiler-text {
  background-color: #888 !important;
  color: #888 !important;
  cursor: pointer !important;
  user-select: none !important;
  transition: background-color 0.2s, color 0.2s;
  padding: 2px 4px;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 20px;
}

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