/* Quarto Custom CSS - Matches sprint3-technical.html and Blackburn Theme */

/* HIDE ALL QUARTO-INJECTED UI ELEMENTS */
#title-block-header,
nav#TOC,
nav[role="doc-toc"],
.quarto-title-meta,
.quarto-title-banner,
#quarto-header,
.quarto-title-block,
.quarto-title-meta-contents,
#quarto-margin-sidebar,
#quarto-sidebar,
.quarto-alternate-formats,
.quarto-alternate-notebooks,
.quarto-title-meta-heading {
  display: none !important;
}

/* Style post-meta section to match sprint3-technical.html */
.post-meta {
  font-size: 90%;
  color: #666;
  margin-bottom: 1em;
  display: block;
}

.post-meta div {
  margin: 0.5em 0;
}

.post-meta i {
  margin-right: 0.5em;
  color: #3b8bba;
}

.post-meta a,
.post-taxonomy-tag {
  color: #3b8bba;
  text-decoration: none;
}

.post-meta a:hover,
.post-taxonomy-tag:hover {
  text-decoration: underline;
}

/* Hide duplicate post-meta that might come from body content */
.content > .post-meta:not(:first-of-type) {
  display: none !important;
}

/* Headers - match Blackburn theme */
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 2em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.5em;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.2em;
  margin-top: 0.8em;
  margin-bottom: 0.4em;
}

/* Code blocks - BLACK BACKGROUND to match androidstudio theme */
pre,
pre.sourceCode,
div.sourceCode pre,
.cell pre {
  background-color: #282b2e !important;
  color: #a9b7c6 !important;
  border: 1px solid #1e1e1e !important;
  padding: 12px !important;
  overflow-x: auto;
  font-size: 0.9em;
  line-height: 1.4;
  border-radius: 4px;
}

code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
}

pre code,
pre.sourceCode code {
  background-color: transparent !important;
  color: inherit !important;
  padding: 0;
}

/* Quarto code blocks - force black background */
.sourceCode {
  background-color: #282b2e !important;
  border: 1px solid #1e1e1e !important;
}

.cell-code {
  background-color: #282b2e !important;
}

/* Code output blocks */
.cell-output pre,
.cell-output-stdout pre {
  background-color: #282b2e !important;
  color: #a9b7c6 !important;
  border: 1px solid #1e1e1e !important;
}

/* Lists */
ul, ol {
  margin: 1em 0;
  padding-left: 2em;
}

li {
  margin: 0.5em 0;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

table thead {
  background-color: #f5f5f5;
  border-bottom: 2px solid #ddd;
}

table th {
  padding: 0.75em;
  text-align: left;
  font-weight: bold;
}

table td {
  padding: 0.75em;
  border-bottom: 1px solid #ddd;
}

/* Blockquotes */
blockquote {
  border-left: 4px solid #3b8bba;
  padding-left: 1em;
  margin-left: 0;
  color: #666;
  font-style: italic;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Figures */
.figure {
  text-align: center;
  margin: 1.5em 0;
}

.figure-caption {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
  font-style: italic;
}

/* Remove Quarto TOC styling - we don't use it */
nav[role="doc-toc"] {
  display: none;
}

/* Metadata styling */
.post-meta {
  font-size: 90%;
  color: #666;
  margin-bottom: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5em;
  }

  h2 {
    font-size: 1.2em;
  }
}

