/* Styles for API Docs Page */
.api-docs-content h1, .api-docs-content h2, .api-docs-content h3 {
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.3em;
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.api-docs-content h1 {
    font-size: 2.25rem; /* 36px */
    line-height: 2.5rem; /* 40px */
}

.api-docs-content h2 {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
}

.api-docs-content h3 {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
}

.api-docs-content p {
    margin-bottom: 1em;
    line-height: 1.6;
}

.api-docs-content a {
    color: #4f46e5; /* Indigo-600 */
    text-decoration: none;
}

.api-docs-content a:hover {
    text-decoration: underline;
}

.api-docs-content code {
    background-color: #f1f5f9; /* Slate-100 */
    color: #dd1144; /* A common color for code */
    padding: 0.2em 0.4em;
    margin: 0;
    font-size: 85%;
    border-radius: 6px;
    font-family: 'Courier New', Courier, monospace;
}

.api-docs-content pre {
    background-color: #1e293b; /* Slate-800 */
    color: #e2e8f0; /* Slate-200 */
    padding: 1em;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5em;
}

.api-docs-content pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
    margin: 0;
    font-size: 100%;
    border-radius: 0;
}

.api-docs-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}

.api-docs-content th, .api-docs-content td {
    border: 1px solid #cbd5e1; /* Slate-300 */
    padding: 0.75em;
    text-align: left;
}

.api-docs-content th {
    background-color: #f8fafc; /* Slate-50 */
    font-weight: 600;
}

.api-docs-content blockquote {
    border-left: 4px solid #64748b; /* Slate-500 */
    padding-left: 1em;
    margin-left: 0;
    color: #475569; /* Slate-600 */
    font-style: italic;
}

.api-docs-content ul, .api-docs-content ol {
    padding-left: 2em;
    margin-bottom: 1em;
}

.api-docs-content li {
    margin-bottom: 0.5em;
}