/* Documentation Page Styles */
.markdown-content {
    line-height: 1.8;
}

.markdown-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
    margin-top: 2rem;
    border-bottom: 2px solid #ea580c;
    padding-bottom: 0.5rem;
}

.markdown-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.markdown-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.markdown-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

.markdown-content p {
    margin-bottom: 1rem;
    color: #374151;
}

.markdown-content ul, .markdown-content ol {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}

.markdown-content ul li {
    margin-bottom: 0.5rem;
}

.markdown-content ol li {
    margin-bottom: 0.5rem;
}

.markdown-content ul {
    list-style-type: disc;
}

.markdown-content ol {
    list-style-type: decimal;
}

.markdown-content li {
    color: #374151;
    margin-bottom: 0.5rem;
}

.markdown-content strong {
    font-weight: bold;
    color: #111827;
}

.markdown-content em {
    font-style: italic;
    color: #4b5563;
}

.markdown-content a {
    color: #ea580c;
    text-decoration: underline;
}

.markdown-content a:hover {
    color: #c2410c;
}

.markdown-content code {
    background-color: #f3f4f6;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: monospace;
}

.markdown-content pre {
    background-color: #1f2937;
    color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.markdown-content pre code {
    background-color: transparent;
    padding: 0;
    color: #f3f4f6;
}

.markdown-content hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-top: 2px solid #e5e7eb;
}

.markdown-content blockquote {
    border-left: 4px solid #ea580c;
    padding-left: 1rem;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #374151;
}

.markdown-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.markdown-content th, .markdown-content td {
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
    text-align: left;
}

.markdown-content th {
    background-color: #f3f4f6;
    font-weight: bold;
}

.markdown-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

