/* -----------------------------
   GitHub Dark Mode–Inspired Theme
   ----------------------------- */

/* General background + text */
body {
  background-color: #0d1117; /* GitHub dark background */
  color: #c9d1d9; /* primary text color */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #f0f6fc;
  font-weight: 600;
}

/* Links */
a {
  color: #58a6ff;
  text-decoration: none;
}
a:hover {
  color: #79c0ff;
  text-decoration: underline;
}

/* Navigation bar */
.navbar, header, .quarto-navbar {
  background-color: #161b22 !important;
  border-bottom: 1px solid #30363d;
}

/* Sidebar / TOC */
.sidebar, .quarto-sidebar, .toc, .quarto-toc {
  background-color: #161b22;
  border-left: 1px solid #30363d;
}

/* Code blocks */
pre, code {
  background-color: #161b22 !important;
  color: #c9d1d9 !important;
  border-radius: 6px;
  font-size: 0.95em;
}

/* Blockquotes */
blockquote {
  color: #8b949e;
  border-left: 4px solid #30363d;
  background-color: #0d1117;
  padding-left: 1rem;
}

/* Tables */
table {
  border-collapse: collapse;
}
th, td {
  border: 1px solid #30363d;
  padding: 0.5rem 1rem;
}
th {
  background-color: #161b22;
}

/* Author / bio section */
#about-me {
  background-color: #161b22;
  border-radius: 12px;
  padding: 2rem;
}

/* Footer */
footer {
  border-top: 1px solid #30363d;
  background-color: #0d1117;
  color: #8b949e;
}

/* Callout / tip boxes */
.callout, .note, .tip {
  background-color: #161b22;
  border-left: 4px solid #58a6ff;
}
