/* SDK release selector (index.md) */
.doc-version-dropdown {
    margin: 0.75rem 0 1.25rem 0;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f8f9fa;
    max-width: 28rem;
}

.doc-version-dropdown__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.doc-version-dropdown__select {
    display: block;
    width: 100%;
    max-width: 20rem;
    padding: 0.35rem 0.5rem;
    font-size: 0.95rem;
}

.doc-version-dropdown__all {
    margin: 0.5rem 0 0 0;
    font-size: 0.85rem;
}

/* Fix overlapping table of contents */
.sphinxsidebar {
    position: relative !important;
    z-index: 1;
}

/* Ensure TOC doesn't overlap content */
div.sphinxsidebarwrapper {
    overflow-y: auto;
    width: 300px;
}

/* Make the overall container wider */
body {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 20px;
}

div.body {
    max-width: none;
    margin-left: 100px;
    padding: 0 40px 20px 40px;
}

/* Fix for mobile/responsive */
@media screen and (max-width: 875px) {
    div.body {
        margin-left: 0;
        padding: 0 20px 20px 20px;
    }
    
    body {
        padding: 0 10px;
    }
}

