/* === ez_format() Text Formatting Styles === */
/* Heritage BBCode-like formatting from the original ezabel.com */

/* Color tags */
.ez-red { color: red; }
.ez-green { color: green; }
.ez-blue { color: blue; }
.ez-orange { color: orange; }
.ez-lime { color: lime; }
.ez-fuchsia { color: fuchsia; }
.ez-olive { color: olive; }
.ez-pink { color: pink; }
.ez-yellow { color: yellow; }

/* Quote/monospace */
.ez-quote { font-family: "Courier New", courier, monospace; }

/* Small text */
.ez-small { font-size: smaller; }

/* Spoiler - hover to reveal */
.ez-spoiler {
  cursor: pointer;
  color: #383838;
  background-color: #383838;
  border-radius: 2px;
  padding: 0 2px;
  transition: color 0.3s, background-color 0.3s;
}

.ez-spoiler:hover,
.ez-spoiler:focus {
  color: white;
  background-color: #383838;
}
