/* Markdown content styling */
.markdown-content {
    line-height: 1.6;
}

.markdown-content h1, 
.markdown-content h2, 
.markdown-content h3 {
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.markdown-content p {
    margin-bottom: 1em;
}

.markdown-content code {
    background-color: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
}

.markdown-content pre {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}

/* Context highlighting */
.context-highlight {
    background-color: #ffeb3b;
    font-weight: bold;
    padding: 2px 0;
}