/* Documentation-specific styles */

.page-content h3 {
    margin-top: 24px;
    margin-bottom: 10px;
}

.page-content pre {
    background: rgb(37 42 55);
    padding: 14px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 12px 0;
}

.page-content pre code {
    font-size: 13px;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    color: inherit;
}

.page-content code {
    font-size: 13px;
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.page-content .box {
    display: inline-block;
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    padding: 2px 10px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 14px;
}

.page-content .box.highlighted {
    color: #4fc3f7;
}

.page-content p {
    line-height: 1.7;
    margin-bottom: 15px;
}


.page-content img {
    max-width: 100%;
    border-radius: 6px;
}

/* Striped tables */
.page-content table.styled {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--header-border);
    margin-bottom: 26px;
}

.page-content table.styled td,
.page-content table.styled th {
    padding: 10px 16px;
    border-bottom: 1px solid var(--header-border);
}

.page-content table.styled tr:last-child td,
.page-content table.styled tr:last-child th {
    border-bottom: none;
}

.page-content table.styled tr:nth-child(odd) {
    background: var(--header-bg);
}

body.is-dark .page-content table.styled tr:nth-child(odd) {
    background: #293040;
}

.page-content table.styled tr:nth-child(even) {
    background: transparent;
}

.page-content table.styled td:first-child {
    font-weight: 600;
    white-space: nowrap;
}

.page-content .alert {
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-content ul:not(.pagination) {
    padding-left: 20px;
}

.page-content ul li:not(.pagination) {
    margin-bottom: 6px;
    line-height: 1.6;
}

