/* Left-align tables */
table.docutils {
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* Table cell padding */
table.docutils td,
table.docutils th {
    padding: 0.5rem 0.75rem;
}

/* Heading spacing - exclude first h1 */
article h1:not(:first-child) {
    margin-top: 2rem;
}

article h1 {
    margin-bottom: 1rem;
}

article h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

article h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

article h4 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Paragraph spacing */
article p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Code block spacing */
pre {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* List spacing */
article ul,
article ol {
    margin-bottom: 1rem;
}

article li {
    margin-bottom: 0.25rem;
}

/* Version switcher */
.version-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.version-switcher select {
    background: var(--color-background-secondary);
    color: var(--color-foreground-primary);
    border: 1px solid var(--color-background-border);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.version-switcher select:hover {
    border-color: var(--color-brand-primary);
}