.api-response-table {
    max-height: 65vh;
    overflow: auto;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.api-response-table > table {
    table-layout: auto;
    width: max-content;
    min-width: 100%;
    margin-bottom: 0;
}

.api-response-table > table > thead > tr > th {
    resize: horizontal;
    overflow: auto;
    min-width: 120px;
    max-width: 480px;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: var(--bs-table-bg, #f8f9fa);
}

.api-response-table > table > tbody > tr > td {
    min-width: 120px;
    max-width: 480px;
    word-break: break-word;
    white-space: normal;
}

.api-response-table.api-table-virtualized > table > tbody > tr {
    height: 32px;
}

.api-response-table.api-table-virtualized > table > tbody > tr > td {
    height: 32px;
    box-sizing: border-box;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: normal;
}
