/* Custom styles for the Quarto book */

/* Code block styling */
pre.sourceCode {
  border-left: 4px solid #0066cc;
  padding-left: 1em;
  background-color: #f8f9fa;
}

/* Inline code */
code {
  background-color: #f1f3f5;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
}

/* Table styling */
table {
  border-collapse: collapse;
  margin: 1em 0;
}

table th {
  background-color: #0066cc;
  color: white;
  padding: 0.75em;
  text-align: left;
}

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

table tr:hover {
  background-color: #f8f9fa;
}

/* Blockquote styling */
blockquote {
  border-left: 4px solid #28a745;
  padding-left: 1em;
  margin-left: 0;
  font-style: italic;
  color: #6c757d;
}

/* Diagram/ASCII art preservation */
pre.text {
  font-family: 'Courier New', monospace;
  white-space: pre;
  overflow-x: auto;
}

/* Callout boxes */
.callout {
  border-left: 4px solid #ffc107;
  padding: 1em;
  margin: 1em 0;
  background-color: #fff3cd;
  border-radius: 4px;
}

.callout-note {
  border-left-color: #0066cc;
  background-color: #e7f3ff;
}

.callout-warning {
  border-left-color: #ffc107;
  background-color: #fff3cd;
}

.callout-important {
  border-left-color: #dc3545;
  background-color: #f8d7da;
}

/* Section headers */
h2 {
  border-bottom: 2px solid #0066cc;
  padding-bottom: 0.5em;
  margin-top: 2em;
}

h3 {
  color: #495057;
  margin-top: 1.5em;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Print styles */
@media print {
  .no-print {
    display: none;
  }
  
  pre {
    page-break-inside: avoid;
  }
  
  table {
    page-break-inside: avoid;
  }
}

