/* in docs/stylesheets/extra.css */

blockquote {
  background-color: rgba(72, 118, 255, 0.1); /* Translucent blue background */
  border: 1px solid rgba(72, 118, 255, 0.5); /* Blue border on all sides */
  border-left: 5px solid #448aff; /* Thicker left border */
  border-radius: 5px;
  padding: 1.5em;
  margin: 1.5em 0;
}

/* You can also style the text inside the blockquote */
blockquote p {
  font-style: italic;
  font-size: 0.95em;
}

/* Apply the Calibri font stack to the main content body.
   The .md-typeset class targets the rendered Markdown content. */
.md-typeset {
  font-family: "Calibri", "Candara", "Segoe", "Segoe UI", "Optima", "Arial", sans-serif;
}

/* Apply the Oswald font to all headers within the content.
   We add 'sans-serif' as a fallback in case Oswald fails to load. */
.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4,
.md-typeset h5,
.md-typeset h6 {
  font-family: "Oswald", sans-serif;
}