    html {
        background-color: #fff;
    }

    :where(.feeData-root) .headerContainer {
        padding: 10px 0 25px 0;
    }

    :where(.feeData-root) .headerLabels {
        color: #a6a6a6;
        font-size: 0.65rem;
        translate: 0 -4px;
    }

    :where(.feeData-root) .header-info .fs-4 {
        white-space: nowrap;
    }

    :where(.feeData-root) .header-info .text-muted {
        white-space: nowrap;
    }

    /* Let the sticky tab bar's container span the full scroll width, so the
       tabs stay stuck the whole way (sticky only holds while its containing
       block is in view). Only on the Entry tab — other tabs (e.g. the
       Tabulator overview) scroll internally and must NOT widen the page. */
    :where(.feeData-root-entry) {
        width: max-content;
        min-width: 100%;
    }

    /* Keep the tab bar in place while the wide Entry table scrolls
       horizontally at the window level. width must shrink to the tabs
       (max-content) — a full-width sticky element has no room to stick, so
       the tabs would scroll off as the empty right side fills the viewport. */
    .feeData-tabs {
        position: sticky;
        left: 0;
        width: fit-content;
        margin-top: 15px;
        padding-left: 50px;
        /* The bar is only as wide as the tabs, so drop its own short bottom
           border — the full-width underline below the tabs draws the line. */
        border-bottom: none;
    }

    /* Full-width underline beneath the tabs. As a normal block it fills the
       root's content box, which is the layout width when the table fits and
       the full table width when it overflows — so the line spans edge-to-edge
       without the scrollbar overrun a 100vw element would cause. */
    .feeData-tabs-underline {
        border-bottom: 1px solid #dee2e6;
    }

    :where(.feeData-root) .nav-tabs .nav-item {
        margin-bottom: -1px;
    }

    :where(.feeData-root) .nav-tabs .nav-link {
        border-radius: 8px;
        background-color: #e0e0e0;
        color: #495057;
        margin-right: 4px;
        transition: background-color 0.33s ease, border-color 0.33s ease;
    }

    :where(.feeData-root) .nav-tabs .nav-link:hover {
        background-color: #d6d6d6;
    }

    :where(.feeData-root) .nav-tabs .nav-link.active {
        color: #fff;
        background-color: #0d6efd;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        position: relative;
        padding: 10px 18px;
    }

    :where(.feeData-root) a {
        cursor: context-menu;
    }

    :where(.feeData-root) input[type="checkbox"] {
        accent-color: #0d9488;
    }

    :where(.feeData-root) .componentContainer .btn-primary {
        background-color: #0d9488;
        border-color: #0d9488;
        color: #fff;
    }

    :where(.feeData-root) .componentContainer .btn-primary:hover,
    :where(.feeData-root) .componentContainer .btn-primary:focus,
    :where(.feeData-root) .componentContainer .btn-primary:active {
        background-color: #0f766e;
        border-color: #0f766e;
        color: #fff;
        box-shadow: 0 0 0 0.25rem rgb(13 148 136 / 0.25);
    }

    :where(.feeData-root) .componentContainer .btn-outline-secondary {
        border-color: #0d9488;
        color: #0d9488;
    }

    :where(.feeData-root) .componentContainer .btn-outline-secondary:hover,
    :where(.feeData-root) .componentContainer .btn-outline-secondary:focus,
    :where(.feeData-root) .componentContainer .btn-outline-secondary:active {
        background-color: #0d9488;
        border-color: #0d9488;
        color: #fff;
        box-shadow: 0 0 0 0.25rem rgb(13 148 136 / 0.25);
    }

    :where(.feeData-root) .componentContainer .form-control:focus,
    :where(.feeData-root) .componentContainer .form-select:focus {
        border-color: #0d9488;
        box-shadow: 0 0 0 0.25rem rgb(13 148 136 / 0.25);
    }

    :where(.feeData-root) .componentContainer .dropdown-menu.shadow {
        box-shadow: 0 0.5rem 1rem rgb(13 148 136 / 0.18) !important;
    }

    /* ---------- Entry view: module styles (.feeData-module) ---------- */
    /* Sticky table header — pins just below the fixed navbar (4rem tall). */
    :where(.feeData-module) .fixed-min-table thead th {
        position: sticky;
        top: 4rem;
        background: #f3f4f6;
        /* same as bg-gray-100 */
        z-index: 20;
    }

    /* Corner cells (Tranche + Dates headers) are pinned on both axes. */
    :where(.feeData-module) .fixed-min-table thead th.col-tranche,
    :where(.feeData-module) .fixed-min-table thead th.col-dates {
        background: #f3f4f6;
        z-index: 30;
    }

    @supports (not (-moz-appearance: none)) {
        :where(.feeData-module) .defaultDateInput,
        :where(.feeData-root) .fee-overview-date-input {
            width: 130px !important;
            min-width: 130px !important;
            max-width: 130px !important;
        }
    }

    /* Fee-selection actions in the header row. */
    :where(.feeData-module) .selection-buttons {
        display: flex;
        justify-content: flex-end;
        flex-shrink: 0;
        gap: 0.5rem;
    }

    :where(.feeData-module) .selection-buttons button {
        font-size: 0.8125rem;
        font-weight: 600;
        padding: 0.35rem 0.6rem;
        border-radius: 0.375rem;
        border: 1px solid transparent;
        transition: background-color 0.15s ease, color 0.15s ease;
    }

    /* Primary action — teal fill, matching the Save Changes button. */
    :where(.feeData-module) .selection-buttons .sel-primary {
        background-color: #0d9488;
        color: #fff;
    }

    :where(.feeData-module) .selection-buttons .sel-primary:hover {
        background-color: #0f766e;
    }

    /* Secondary action — teal outline. */
    :where(.feeData-module) .selection-buttons .sel-secondary {
        background-color: #fff;
        color: #0d9488;
        border-color: #0d9488;
    }

    :where(.feeData-module) .selection-buttons .sel-secondary:hover {
        background-color: #f0fdfa;
    }

    :where(.feeData-module) input[type="checkbox"] {
        accent-color: #0d9488;
    }

    :where(.feeData-module) .form-check-input:checked {
        background-color: #0d9488;
        border-color: #0d9488;
    }

    :where(.feeData-module) .form-check-input:focus {
        border-color: #0d9488;
        box-shadow: 0 0 0 0.25rem rgb(13 148 136 / 0.25);
    }

    /* Table spans edge-to-edge: negative margins cancel the column's 24px
       .p-4 gutter so the grid uses the full width (the card keeps its gap). */
    :where(.feeData-module) .fixed-min-table-wrapper {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    /* Keep the filter card and Save bar visually fixed while the wide
       table scrolls horizontally at the window level. They rest at the 24px
       .p-4 gutter, so pinning there (1.5rem) means no slide on scroll. */
    :where(.feeData-module) .fee-entry-topbar,
    :where(.feeData-module) .fee-entry-actions {
        position: sticky;
        left: 1rem;
        padding-bottom: 20px;
        /* max-width (not width) keeps the card viewport-wide without forcing
           the content box past the viewport: an explicit 100vw width + the
           24px p-4 gutter overflowed by the scrollbar's width. */
        max-width: calc(100vw - 1rem - 1rem);
    }

    @supports (not (-moz-appearance: none)) {
        :where(.feeData-module) .fee-entry-topbar,
        :where(.feeData-module) .fee-entry-actions {
            max-width: calc(100vw - 1rem - 1.66rem) !important;
        }
    }

    :where(.feeData-module) .fee-entry-topbar {
        padding: 20px 5px 25px 0;
    }

    :where(.feeData-module) .fixed-min-table {
        width: max(100%, max-content);
        position: relative;
    }

    :where(.feeData-module) .fixed-min-table .col-tranche {
        min-width: 300px;
        width: 300px;
        position: sticky;
        left: 0;
        z-index: 10;
        border-right: none;
        /* Tranche ↔ Start/End Date separator, drawn into the cell background:
           it paints in the sticky cell's own layer (above the scrolling fee
           columns), so the line stays solid and never flickers. A collapsed
           border paints at the table's layer and gets overdrawn by the
           scrolling cells; pseudo-elements/box-shadow don't render on
           border-collapse cells at all. */
        background: linear-gradient(to right, #fff calc(100% - 1px), lightgray calc(100% - 1px));
    }

    /* Header cell: same separator, over the header gray. */
    :where(.feeData-module) .fixed-min-table thead th.col-tranche {
        background: linear-gradient(to right, #f3f4f6 calc(100% - 1px), lightgray calc(100% - 1px));
    }

    .sticky-col::after {
        content: "";
        position: absolute;
        top: 0;
        right: -8px;
        width: 8px;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(to right,
                rgba(0, 0, 0, .12),
                rgba(0, 0, 0, 0));

    }

    :where(.feeData-module) .fixed-min-table .col-dates {
        min-width: 300px;
        width: 300px;
        position: sticky;
        left: 300px;
        background: white;
        z-index: 10;
    }

    :where(.feeData-module) .fixed-min-table .col-fee {
        min-width: 305px;
    }

    :where(.feeData-module) .fixed-min-table .col-history {
        min-width: 100px;
    }

    :where(.feeData-module) .roundedRightCorners {
        border-top-right-radius: 4px !important;
        border-bottom-right-radius: 4px !important;
    }

    :where(.feeData-module) .badge-soft {
        background: #eef2ff;
        color: #364152;
        font-weight: 600;
    }

    :where(.feeData-module) .fee-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 2fr));
        column-gap: 3.5rem;
        align-items: center;
        margin-top: 15px;
    }

    :where(.feeData-module) .fee-item {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
    }

    :where(.feeData-module) .fee-label {
        white-space: nowrap;
    }


    :where(.feeData-module) input:disabled {
        background-color: #f9f9f9;
        cursor: not-allowed;
    }

    :where(.feeData-module) #filterContainer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }

    :where(.feeData-module) #filterContainer label {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        margin-bottom: 0;
    }

    :where(.feeData-module) .fee-entry-header-label-text {
        display: inline-block;
        transform: translateY(-1px);
    }

    :where(.feeData-module) .spanDoesOverlap {
        background-color: orange;
    }

    :where(.feeData-module) .relative {
        position: relative;
    }

    :where(.feeData-module) .text-xs {
        font-size: 0.75rem;
    }

    :where(.feeData-module) .text-gray-500 {
        color: #6b7280;
    }

    :where(.feeData-module) .hasPendingChange {
        --tw-text-opacity: 1;
        border: 2px solid rgb(13 148 136 / var(--tw-text-opacity, 1)) !important;
        outline: none;
    }

    :where(.feeData-module) .pendingChangeLabel {
        color: rgb(13 148 136 / 0.33) !important;
        position: absolute;
        left: 0;
        top: 0;
    }

    :where(.feeData-module) .overlappingSpanLabel {
        color: orange !important;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    :where(.feeData-module) .openProductPageLabel {
        opacity: 0.5;
        position: absolute;
        right: 10px;
        bottom: 10px;
    }

    :where(.feeData-module) .custom-col-3 {
        width: 25%;
    }

    :where(.feeData-module) .custom-col-4 {
        width: 40%;
    }

    :where(.feeData-module) .popover-overlay {
        position: fixed;
        top: 7vh;
        left: 10vw;
        min-width: 85vw;
        max-width: 90vw;
        min-height: 60vh;
        max-height: 86vh;
        background: white;
        border: 1px solid #ddd;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        padding: 15px;
        border-radius: 8px;
        display: block;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
    }

    :where(.feeData-module) .popup-table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }

    :where(.feeData-module) .popover-overlay.visible {
        display: block;
    }

    :where(.feeData-module) .centered {
        text-align: center;
    }

    :where(.feeData-module) th,
    :where(.feeData-module) td {
        border-right: 0.5px solid lightgray;
    }

    :where(.feeData-module) table th:last-child,
    :where(.feeData-module) table td:last-child {
        border-right: none;
    }

    :where(.feeData-module) .errorField {
        background-color: red;
        padding: 5px;
    }

    /* Fee-setup tooltip (Ctrl-hover on a fee cell) and entry action bar. */
    :where(.feeData-module) .fee-setup-tooltip {
        position: fixed;
        z-index: 2000;
        width: min(400px, calc(100vw - 24px - 24px));
        max-height: 400px;
        padding: 12px;
        color: #1f2937;
        background: #ffffff;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        pointer-events: none;
        text-align: left;
        overflow: auto;
    }

    :where(.feeData-module) .fee-setup-tooltip-source {
        background-color: #f3f4f6;
    }

    :where(.feeData-module) .automated-fee-cell-message {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        color: #c9c9c9;
        font-size: 12px;
        font-style: italic;
    }

    :where(.feeData-module) .fee-entry-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    :where(.feeData-module) .fee-setup-tooltip-hint {
        color: #9ca3af;
        font-size: 14px;
        font-style: italic;
        text-align: right;
    }

    :where(.feeData-module) .fee-setup-tooltip-header {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    :where(.feeData-module) .fee-setup-tooltip-title {
        color: #111827;
        font-size: 15px;
        font-weight: 700;
        font-size: 16px;
        padding-bottom: 10px;
    }

    :where(.feeData-module) .fee-setup-tooltip-message {
        color: #111827;
        font-size: 13px;
        font-weight: 600;
    }

    :where(.feeData-module) .fee-setup-tooltip-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-content: flex-start;
        gap: 4px;
        min-width: 160px;
    }

    :where(.feeData-module) .fee-setup-tooltip-badges span {
        padding: 2px 7px;
        color: #0f766e;
        background: #ccfbf1;
        border: 1px solid #99f6e4;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 600;
    }

    :where(.feeData-module) .fee-setup-tooltip-row {
        display: grid;
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 12px;
        padding: 3px 0;
        border-top: 1px solid #f1f5f9;
        font-size: 12px;
    }

    :where(.feeData-module) .fee-setup-tooltip-row span {
        color: #64748b;
    }

    :where(.feeData-module) .fee-setup-tooltip-row strong {
        min-width: 0;
        color: #111827;
        font-weight: 600;
        overflow-wrap: anywhere;
    }

    /* ---------- Entry view: vendored Tailwind reset + utilities ---------- */
    :where(.feeData-module) ::before,
    :where(.feeData-module) ::after {
        --tw-border-spacing-x: 0;
        --tw-border-spacing-y: 0;
        --tw-translate-x: 0;
        --tw-translate-y: 0;
        --tw-rotate: 0;
        --tw-skew-x: 0;
        --tw-skew-y: 0;
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        --tw-pan-x: ;
        --tw-pan-y: ;
        --tw-pinch-zoom: ;
        --tw-scroll-snap-strictness: proximity;
        --tw-gradient-from-position: ;
        --tw-gradient-via-position: ;
        --tw-gradient-to-position: ;
        --tw-ordinal: ;
        --tw-slashed-zero: ;
        --tw-numeric-figure: ;
        --tw-numeric-spacing: ;
        --tw-numeric-fraction: ;
        --tw-ring-inset: ;
        --tw-ring-offset-width: 0px;
        --tw-ring-offset-color: #fff;
        --tw-ring-color: rgb(59 130 246 / 0.5);
        --tw-ring-offset-shadow: 0 0 #0000;
        --tw-ring-shadow: 0 0 #0000;
        --tw-shadow: 0 0 #0000;
        --tw-shadow-colored: 0 0 #0000;
        --tw-blur: ;
        --tw-brightness: ;
        --tw-contrast: ;
        --tw-grayscale: ;
        --tw-hue-rotate: ;
        --tw-invert: ;
        --tw-saturate: ;
        --tw-sepia: ;
        --tw-drop-shadow: ;
        --tw-backdrop-blur: ;
        --tw-backdrop-brightness: ;
        --tw-backdrop-contrast: ;
        --tw-backdrop-grayscale: ;
        --tw-backdrop-hue-rotate: ;
        --tw-backdrop-invert: ;
        --tw-backdrop-opacity: ;
        --tw-backdrop-saturate: ;
        --tw-backdrop-sepia: ;
        --tw-contain-size: ;
        --tw-contain-layout: ;
        --tw-contain-paint: ;
        --tw-contain-style: ;
    }

    :where(.feeData-module) ::backdrop {
        --tw-border-spacing-x: 0;
        --tw-border-spacing-y: 0;
        --tw-translate-x: 0;
        --tw-translate-y: 0;
        --tw-rotate: 0;
        --tw-skew-x: 0;
        --tw-skew-y: 0;
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        --tw-pan-x: ;
        --tw-pan-y: ;
        --tw-pinch-zoom: ;
        --tw-scroll-snap-strictness: proximity;
        --tw-gradient-from-position: ;
        --tw-gradient-via-position: ;
        --tw-gradient-to-position: ;
        --tw-ordinal: ;
        --tw-slashed-zero: ;
        --tw-numeric-figure: ;
        --tw-numeric-spacing: ;
        --tw-numeric-fraction: ;
        --tw-ring-inset: ;
        --tw-ring-offset-width: 0px;
        --tw-ring-offset-color: #fff;
        --tw-ring-color: rgb(59 130 246 / 0.5);
        --tw-ring-offset-shadow: 0 0 #0000;
        --tw-ring-shadow: 0 0 #0000;
        --tw-shadow: 0 0 #0000;
        --tw-shadow-colored: 0 0 #0000;
        --tw-blur: ;
        --tw-brightness: ;
        --tw-contrast: ;
        --tw-grayscale: ;
        --tw-hue-rotate: ;
        --tw-invert: ;
        --tw-saturate: ;
        --tw-sepia: ;
        --tw-drop-shadow: ;
        --tw-backdrop-blur: ;
        --tw-backdrop-brightness: ;
        --tw-backdrop-contrast: ;
        --tw-backdrop-grayscale: ;
        --tw-backdrop-hue-rotate: ;
        --tw-backdrop-invert: ;
        --tw-backdrop-opacity: ;
        --tw-backdrop-saturate: ;
        --tw-backdrop-sepia: ;
        --tw-contain-size: ;
        --tw-contain-layout: ;
        --tw-contain-paint: ;
        --tw-contain-style: ;
    }

    /*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/

    /*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

    :where(.feeData-module) *,
    :where(.feeData-module) ::before,
    :where(.feeData-module) ::after {
        box-sizing: border-box;
        /* 1 */
        border-width: 0;
        /* 2 */
        border-style: solid;
        /* 2 */
        border-color: #e5e7eb;
        /* 2 */
    }

    :where(.feeData-module) ::before,
    :where(.feeData-module) ::after {
        --tw-content: '';
    }

    /*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

    :where(.feeData-module) {
        line-height: 1.5;
        /* 1 */
        -webkit-text-size-adjust: 100%;
        /* 2 */
        -moz-tab-size: 4;
        /* 3 */
        -o-tab-size: 4;
        tab-size: 4;
        /* 3 */
        font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        /* 4 */
        font-feature-settings: normal;
        /* 5 */
        font-variation-settings: normal;
        /* 6 */
        -webkit-tap-highlight-color: transparent;
        /* 7 */
    }

    /*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

    :where(.feeData-module) {
        margin: 0;
        /* 1 */
        line-height: inherit;
        /* 2 */
    }

    /*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

    :where(.feeData-module) hr {
        height: 0;
        /* 1 */
        color: inherit;
        /* 2 */
        border-top-width: 1px;
        /* 3 */
    }

    /*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

    :where(.feeData-module) abbr:where([title]) {
        -webkit-text-decoration: underline dotted;
        text-decoration: underline dotted;
    }

    /*
Remove the default font size and weight for headings.
*/

    :where(.feeData-module) h1,
    :where(.feeData-module) h2,
    :where(.feeData-module) h3,
    :where(.feeData-module) h4,
    :where(.feeData-module) h5,
    :where(.feeData-module) h6 {
        font-size: inherit;
        font-weight: inherit;
    }

    /*
Reset links to optimize for opt-in styling instead of opt-out.
*/

    :where(.feeData-module) a {
        color: inherit;
        text-decoration: inherit;
    }

    /*
Add the correct font weight in Edge and Safari.
*/

    :where(.feeData-module) b,
    :where(.feeData-module) strong {
        font-weight: bolder;
    }

    /*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

    :where(.feeData-module) code,
    :where(.feeData-module) kbd,
    :where(.feeData-module) samp,
    :where(.feeData-module) pre {
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        /* 1 */
        font-feature-settings: normal;
        /* 2 */
        font-variation-settings: normal;
        /* 3 */
        font-size: 1em;
        /* 4 */
    }

    /*
Add the correct font size in all browsers.
*/

    :where(.feeData-module) small {
        font-size: 80%;
    }

    /*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

    :where(.feeData-module) sub,
    :where(.feeData-module) sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    :where(.feeData-module) sub {
        bottom: -0.25em;
    }

    :where(.feeData-module) sup {
        top: -0.5em;
    }

    /*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

    :where(.feeData-module) table {
        text-indent: 0;
        /* 1 */
        border-color: inherit;
        /* 2 */
        border-collapse: collapse;
        /* 3 */
    }

    /*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

    :where(.feeData-module) button,
    :where(.feeData-module) input,
    :where(.feeData-module) optgroup,
    :where(.feeData-module) select,
    :where(.feeData-module) textarea {
        font-family: inherit;
        /* 1 */
        font-feature-settings: inherit;
        /* 1 */
        font-variation-settings: inherit;
        /* 1 */
        font-size: 100%;
        /* 1 */
        font-weight: inherit;
        /* 1 */
        line-height: inherit;
        /* 1 */
        letter-spacing: inherit;
        /* 1 */
        color: inherit;
        /* 1 */
        margin: 0;
        /* 2 */
        padding: 0;
        /* 3 */
    }

    /*
Remove the inheritance of text transform in Edge and Firefox.
*/

    :where(.feeData-module) button,
    :where(.feeData-module) select {
        text-transform: none;
    }

    /*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

    :where(.feeData-module) button,
    :where(.feeData-module) input:where([type='button']),
    :where(.feeData-module) input:where([type='reset']),
    :where(.feeData-module) input:where([type='submit']) {
        -webkit-appearance: button;
        /* 1 */
        background-color: transparent;
        /* 2 */
        background-image: none;
        /* 2 */
    }

    /*
Use the modern Firefox focus style for all focusable elements.
*/

    :where(.feeData-module) :-moz-focusring {
        outline: auto;
    }

    /*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

    :where(.feeData-module) :-moz-ui-invalid {
        box-shadow: none;
    }

    /*
Add the correct vertical alignment in Chrome and Firefox.
*/

    :where(.feeData-module) progress {
        vertical-align: baseline;
    }

    /*
Correct the cursor style of increment and decrement buttons in Safari.
*/

    :where(.feeData-module) ::-webkit-inner-spin-button,
    :where(.feeData-module) ::-webkit-outer-spin-button {
        height: auto;
    }

    /*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

    :where(.feeData-module) [type='search'] {
        -webkit-appearance: textfield;
        /* 1 */
        outline-offset: -2px;
        /* 2 */
    }

    /*
Remove the inner padding in Chrome and Safari on macOS.
*/

    :where(.feeData-module) ::-webkit-search-decoration {
        -webkit-appearance: none;
    }

    /*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

    :where(.feeData-module) ::-webkit-file-upload-button {
        -webkit-appearance: button;
        /* 1 */
        font: inherit;
        /* 2 */
    }

    /*
Add the correct display in Chrome and Safari.
*/

    :where(.feeData-module) summary {
        display: list-item;
    }

    /*
Removes the default spacing and border for appropriate elements.
*/

    :where(.feeData-module) blockquote,
    :where(.feeData-module) dl,
    :where(.feeData-module) dd,
    :where(.feeData-module) h1,
    :where(.feeData-module) h2,
    :where(.feeData-module) h3,
    :where(.feeData-module) h4,
    :where(.feeData-module) h5,
    :where(.feeData-module) h6,
    :where(.feeData-module) hr,
    :where(.feeData-module) figure,
    :where(.feeData-module) p,
    :where(.feeData-module) pre {
        margin: 0;
    }

    :where(.feeData-module) fieldset {
        margin: 0;
        padding: 0;
    }

    :where(.feeData-module) legend {
        padding: 0;
    }

    :where(.feeData-module) ol,
    :where(.feeData-module) ul,
    :where(.feeData-module) menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /*
Reset default styling for dialogs.
*/

    :where(.feeData-module) dialog {
        padding: 0;
    }

    /*
Prevent resizing textareas horizontally by default.
*/

    :where(.feeData-module) textarea {
        resize: vertical;
    }

    /*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

    :where(.feeData-module) input::-moz-placeholder,
    :where(.feeData-module) textarea::-moz-placeholder {
        opacity: 1;
        /* 1 */
        color: #9ca3af;
        /* 2 */
    }

    :where(.feeData-module) input::placeholder,
    :where(.feeData-module) textarea::placeholder {
        opacity: 1;
        /* 1 */
        color: #9ca3af;
        /* 2 */
    }

    /*
Set the default cursor for buttons.
*/

    :where(.feeData-module) button,
    :where(.feeData-module) [role="button"] {
        cursor: pointer;
    }

    /*
Make sure disabled buttons don't get the pointer cursor.
*/

    :where(.feeData-module) :disabled {
        cursor: default;
    }

    /*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

    :where(.feeData-module) img,
    :where(.feeData-module) video {
        max-width: 100%;
        height: auto;
    }

    /* Make elements with the HTML hidden attribute stay hidden by default */

    :where(.feeData-module) [hidden]:where(:not([hidden="until-found"])) {
        display: none;
    }

    :where(.feeData-module) .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }

    :where(.feeData-module) .mb-4 {
        margin-bottom: 1rem;
    }

    :where(.feeData-module) .mb-6 {
        margin-bottom: 1.5rem;
    }

    :where(.feeData-module) .mr-1 {
        margin-right: 0.25rem;
    }

    :where(.feeData-module) .mt-1 {
        margin-top: 0.25rem;
    }

    :where(.feeData-module) .mt-6 {
        margin-top: 1.5rem;
    }

    :where(.feeData-module) .mt-auto {
        margin-top: auto;
    }

    :where(.feeData-module) .flex {
        display: flex;
    }

    :where(.feeData-module) .inline-flex {
        display: inline-flex;
    }

    :where(.feeData-module) .table {
        display: table;
    }

    :where(.feeData-module) .h-6 {
        height: 1.5rem;
    }

    :where(.feeData-module) .min-h-screen {
        min-height: 100vh;
    }

    :where(.feeData-module) .w-11 {
        width: 2.75rem;
    }

    :where(.feeData-module) .w-64 {
        width: 16rem;
    }

    :where(.feeData-module) .w-full {
        width: 100%;
    }

    :where(.feeData-module) .min-w-full {
        min-width: 100%;
    }

    :where(.feeData-module) .flex-1 {
        flex: 1 1 0%;
    }

    :where(.feeData-module) .cursor-pointer {
        cursor: pointer;
    }

    :where(.feeData-module) .flex-wrap {
        flex-wrap: wrap;
    }

    :where(.feeData-module) .items-center {
        align-items: center;
    }

    :where(.feeData-module) .justify-center {
        justify-content: center;
    }

    :where(.feeData-module) .justify-between {
        justify-content: space-between;
    }

    :where(.feeData-module) .gap-1 {
        gap: 0.25rem;
    }

    :where(.feeData-module) .gap-2 {
        gap: 0.5rem;
    }

    :where(.feeData-module) .gap-4 {
        gap: 1rem;
    }

    :where(.feeData-module) .space-x-4> :not([hidden])~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1rem * var(--tw-space-x-reverse));
        margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
    }

    :where(.feeData-module) .space-y-2> :not([hidden])~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
    }

    :where(.feeData-module) .space-y-4> :not([hidden])~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    }

    :where(.feeData-module) .rounded {
        border-radius: 0.25rem;
    }

    :where(.feeData-module) .rounded-full {
        border-radius: 9999px;
    }

    :where(.feeData-module) .rounded-lg {
        border-radius: 0.5rem;
    }

    :where(.feeData-module) .rounded-md {
        border-radius: 0.375rem;
    }

    :where(.feeData-module) .border {
        border-width: 1px;
    }

    :where(.feeData-module) .border-t {
        border-top-width: 1px;
    }

    :where(.feeData-module) .bg-gray-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
    }

    :where(.feeData-module) .bg-gray-300 {
        --tw-bg-opacity: 1;
        background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
    }

    :where(.feeData-module) .bg-teal-500 {
        --tw-bg-opacity: 1;
        background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
    }

    :where(.feeData-module) .bg-teal-600 {
        --tw-bg-opacity: 1;
        background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
    }

    :where(.feeData-module) .bg-white {
        --tw-bg-opacity: 1;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    }

    :where(.feeData-module) .p-4 {
        padding: 1rem;
    }

    :where(.feeData-module) .p-5 {
        padding: 1.25rem;
    }

    :where(.feeData-module) .p-8 {
        padding: 2rem;
    }

    :where(.feeData-module) .px-2 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    :where(.feeData-module) .px-3 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    :where(.feeData-module) .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    :where(.feeData-module) .px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    :where(.feeData-module) .py-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    :where(.feeData-module) .py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    :where(.feeData-module) .py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    :where(.feeData-module) .pt-6 {
        padding-top: 1.5rem;
    }

    :where(.feeData-module) .text-left {
        text-align: left;
    }

    :where(.feeData-module) .text-center {
        text-align: center;
    }

    :where(.feeData-module) .font-sans {
        font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    }

    :where(.feeData-module) .text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    :where(.feeData-module) .text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    :where(.feeData-module) .text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    :where(.feeData-module) .text-xs {
        font-size: 0.75rem;
        line-height: 1rem;
    }

    :where(.feeData-module) .font-bold {
        font-weight: 700;
    }

    :where(.feeData-module) .font-semibold {
        font-weight: 600;
    }

    :where(.feeData-module) .text-gray-500 {
        --tw-text-opacity: 1;
        color: rgb(107 114 128 / var(--tw-text-opacity, 1));
    }

    :where(.feeData-module) .text-gray-700 {
        --tw-text-opacity: 1;
        color: rgb(55 65 81 / var(--tw-text-opacity, 1));
    }

    :where(.feeData-module) .text-sky-600 {
        --tw-text-opacity: 1;
        color: rgb(2 132 199 / var(--tw-text-opacity, 1));
    }

    :where(.feeData-module) .text-teal-500 {
        --tw-text-opacity: 1;
        color: rgb(20 184 166 / var(--tw-text-opacity, 1));
    }

    :where(.feeData-module) .text-teal-600 {
        --tw-text-opacity: 1;
        color: rgb(13 148 136 / var(--tw-text-opacity, 1));
    }

    :where(.feeData-module) .text-white {
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    }

    :where(.feeData-module) .shadow {
        --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

    :where(.feeData-module) .shadow-md {
        --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

    :where(.feeData-module) .filter {
        filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    }

    :where(.feeData-module) .transition-all {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
    }

    :where(.feeData-module) .hover\:bg-gray-50:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
    }

    :where(.feeData-module) .hover\:bg-teal-100:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
    }

    :where(.feeData-module) .hover\:bg-teal-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
    }

    :where(.feeData-module) .hover\:underline:hover {
        text-decoration-line: underline;
    }

    :where(.feeData-module) .peer:checked~.peer-checked\:bg-teal-500 {
        --tw-bg-opacity: 1;
        background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
    }
