/* SPDX-License-Identifier: MIT */
/* Copyright (C) 2022 Xilinx, Inc. */
/* Copyright (C) 2022-2025 Advanced Micro Devices, Inc. */

/* Style for table rows containing headers
 *
 * - Align to bottom so that headers with and without super-indices are aligned.
 *   This works because we aren't using any sub-indices at the moment.
 *
 * - Sticky position allows rows to stay visible when scrolling, which is useful for large tables
 */
table.doxtable th {
    vertical-align: bottom;
    position: sticky;
    top: 0;
    z-index: 1;
    white-space: nowrap;
}
table.doxtable td {
    white-space: nowrap;
}
/* Definition lists, avoid newline between term and description */
dl.footnote {
    display: block;
}
.footnote dd {
}
.footnote dt {
    padding-right: 10pt;
    font-style: italic;
    font-weight: normal !important;
    float: left;
    clear: left;
}
