/* TOOLS / markdown_table — module-local styles only (two-pane mirrors list_converter). */

.mt-panes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.mt-panes .tool-section {
    margin-bottom: 0;
}

.mt-panes .tool-textarea {
    min-height: 260px;
    width: 100%;
    box-sizing: border-box;
}

.mt-panes .tool-output {
    min-height: 260px;
    margin-top: 8px;
}

@media (max-width: 720px) {
    .mt-panes {
        grid-template-columns: 1fr;
    }

    .mt-panes .tool-textarea,
    .mt-panes .tool-output {
        min-height: 160px;
    }
}
