/* Custom styles for high contrast and readability */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #1f2937; /* Gray-800 for background */
    color: #d1d5db; /* Gray-300 for body text */
    line-height: 1.75;
}

.container {
    max-width: 800px; /* Max width for readability */
    margin: 0 auto;
}

h1, h2, h3, h4 {
    color: #f9fafb; /* White/Light for readability */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; border-bottom: 2px solid #374151; padding-bottom: 0.5rem; }
h3 { font-size: 1.5rem; }

a {
    color: #60a5fa; /* Blue-400 */
    text-decoration: underline !important; 
    font-weight: 600;
    transition: color 0.2s;
}

a.inline-block {
    text-decoration: none !important;
}

a:hover {
    color: #f9fafb;
}

.article-content {
    background-color: #111827; /* Gray-900 for article background */
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.callout {
    background-color: #374151;
    border-left: 4px solid #60a5fa;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    font-style: italic;
}

pre {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    font-size: 0.875rem;
    border: 1px solid #374151;
}