@import url('https://fonts.googleapis.com/css2?family=Georama&display=swap');

:root {
  /* Set the accent color to realtor.com's signature blue */
  --q-accent: #052B4E;
}

/* Apply the custom font across the document */
body {
  font-family: 'Georama', sans-serif;
}

/* Make all figures and images responsive */
img, figure {
  max-width: 100% !important;
  height: auto !important;
  margin: auto;
  display: block;
}

/* Specific handling for plotly outputs */
.plotly-graph-div {
  width: 100% !important;
}

/* Handle matplotlib/seaborn outputs */
.cell-output-display img {
  max-width: 100% !important;
  height: auto !important;
}

/* Optionally, apply the accent color to common elements */
a,
.btn-primary {
  color: var(--q-accent);
  border-color: var(--q-accent);
}

@media print {
  /* Hide the TOC (adjust the selector to match how your TOC is rendered) */
  #TOC,
  .quarto-alternate-formats {
    display: none;
  }
}