/* User Provided Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700&display=swap');

/* Hide the "Made with MyST" link in the sidebar */
/* should become obsolete - see https://github.com/jupyter-book/myst-theme/pull/613, included in myst 1.6.2. */

a[href="https://mystmd.org/made-with-myst"] {
  display: none !important;
}

/* Body font */
body {
    font-family: Arial, sans-serif;
}

/* Headings font */
h1, h2, h3, h4, h5, h6 {
    font-family:  'Roboto Slab', serif;
}

/* Alleen links in de hoofdcontent */
.content a,
.content a.reference,
.content a.external {
  color: #1a73e8 !important; /* jouw gewenste kleur */
  text-decoration: none !important;
}

.content a:hover,
.content a.reference:hover,
.content a.external:hover {
  text-decoration: underline !important;
}

.text-image {
  display: flex;
  align-items: flex-start; /* bovenaan uitlijnen */
  gap: 1rem;
}

/* schuif het hele image-blok iets naar beneden */
.text-image .image {
  margin-top: 7rem !important; /* verhoog indien nodig naar 1rem, 1.5rem, etc. */
}

/* optioneel: breedtebeperking voor de afbeelding */
.text-image .image img {
  max-width: 200px;
  height: auto;
}
