/* KTheme table component for the lightweight manual child theme. */
.doc-middle-content .layout_table_of_wapper {
    width: 100%;
    margin: 28px 0;
    overflow-x: auto;
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
}

.doc-middle-content .layout_table_of_wapper_inner {
    min-width: 100%;
}

.doc-middle-content table.layout_table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    border-top: 3px solid var(--manual-text);
    border-bottom: 2px solid var(--manual-text);
    background: var(--manual-card);
    color: var(--manual-secondary);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.doc-middle-content table.layout_table th,
.doc-middle-content table.layout_table td {
    padding: 16px 14px;
    border: 0;
    border-bottom: 1px solid var(--manual-border);
    text-align: left;
    vertical-align: top;
}

.doc-middle-content table.layout_table th {
    background: var(--manual-subtle);
    color: var(--manual-text);
    font-weight: 600;
    text-align: center;
}

.doc-middle-content table.layout_table tbody tr:last-child > * {
    border-bottom: 0;
}

.doc-middle-content table.layout_table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 767px) {
    .doc-middle-content .layout_table_of_wapper_inner {
        min-width: 560px;
    }

    .doc-middle-content table.layout_table th,
    .doc-middle-content table.layout_table td {
        padding: 13px 12px;
    }
}
