/* Base layout & typography */
  body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    color: #1c1c1c;
      background-color: #f9fafb;
      line-height: 1.6;
    padding: 2rem;
  }

/* Headings */
  h1, h2, h3, h4 {
    font-weight: 700;
    color: #0a0a23;
      margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.3rem;
  }

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.4rem;
}

/* Links */
  a {
    color: #0d6efd;
      text-decoration: none;
  }

/* Code blocks */
  pre, code {
    font-family: 'Fira Code', 'Courier New', monospace;
    background-color: #f3f4f6;
      color: #111827;
      padding: 0.4rem 0.6rem;
    border-radius: 6px;
  }

pre {
  padding: 1rem;
  overflow-x: auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Tables */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
    background-color: #ffffff;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

th, td {
  border: 1px solid #e5e7eb;
  padding: 0.75rem;
  text-align: left;
}

th {
  background-color: #f1f5f9;
    font-weight: 600;
}

/* Plots and images */
  img, .quarto-figure {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 1rem 0;
  }

/* Callouts (optional for analysis tips) */
  div.callout {
    border-left: 4px solid #0d6efd;
    background-color: #e9f2ff;
      padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 6px;
  }

/* Smooth hover on code copy button if using Quarto default styling */
  button.copy-to-clipboard-button {
    background-color: #0d6efd;
      color: white;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: background-color 0.2s;
  }

button.copy-to-clipboard-button:hover {
  background-color: #084298;
}