/* System font stack definitions */
:root {
  --font-montserrat: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-roboto: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Font family definitions using system fonts */
.montserrat-font {
  font-family: var(--font-montserrat);
  font-display: swap;
}

.roboto-font {
  font-family: var(--font-roboto);
  font-display: swap;
}

/* Apply system fonts to ReDoc elements */
body {
  font-family: var(--font-roboto);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-montserrat);
}

/* Add Solace logo to the left panel */
.menu-content::before {
  content: "";
  display: block;
  padding: 5px 0;
  margin: 0;
  background-image: url('solace-logo.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 140px auto;
  min-height: 70px;
}