/* Documentation Content Styles */
.docs-content {
    line-height: 1.7;
}

.docs-content h1 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.docs-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #e9ecef;
}

.docs-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.docs-content h4 {
    font-size: 1.2rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.docs-content p {
    margin-bottom: 1rem;
}

.docs-content ul, .docs-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.docs-content li {
    margin-bottom: 0.5rem;
}

/* Code blocks */
.docs-content pre {
    background-color: #282c34;
    color: #abb2bf;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.5;
}

.docs-content code {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
}

.docs-content :not(pre) > code {
    background-color: #f1f3f5;
    color: #e83e8c;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* Tables */
.docs-content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.docs-content th, .docs-content td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    text-align: left;
}

.docs-content th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.docs-content tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Horizontal rule */
.docs-content hr {
    border: none;
    border-top: 2px solid #e9ecef;
    margin: 2rem 0;
}

/* Blockquotes */
.docs-content blockquote {
    border-left: 4px solid #1D80F7;
    padding-left: 1rem;
    margin-left: 0;
    margin-bottom: 1rem;
    color: #555;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0 6px 6px 0;
}

/* Links in docs */
.docs-content a {
    color: #1D80F7;
    text-decoration: none;
}

.docs-content a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .docs-content pre {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    .docs-content h1 {
        font-size: 1.75rem;
    }

    .docs-content h2 {
        font-size: 1.5rem;
    }

    .docs-content h3 {
        font-size: 1.25rem;
    }

    .docs-content table {
        display: block;
        overflow-x: auto;
    }
}
