/* Custom CSS for EI1 folder (cerebrolusion.xyz/core/ei1/) */

/* This provides specific styling for EI1's content, branching from the global style.css */
/* It's intended to enhance readability and visual appeal within this specific domain. */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e9ecef; /* Lighter background for specific content */
    color: #212529; /* Darker text for better contrast */
}

.container {
    border: 1px solid #ced4da;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background-color: #ffffff;
    padding: 30px;
}

h1 {
    color: #004085; /* Deeper blue for main titles */
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    color: #0056b3; /* Consistent with main site H2, but slightly adjusted */
    margin-top: 25px;
    margin-bottom: 15px;
}

h3 {
    color: #007bff; /* Accent color for subheadings */
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

nav ul li a {
    color: #495057; /* Subtler link color for navigation */
    font-weight: normal;
}

nav ul li a:hover {
    color: #007bff;
}

code {
    background-color: #e2e6ea;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: 'Cascadia Code', 'Consolas', monospace;
    color: #c80000; /* Reddish for code snippets */
}

pre {
    background-color: #2b2b2b;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Cascadia Code', 'Consolas', monospace;
}