[dir="rtl"] .fi-one-time-code-input-ctn {
    direction: ltr;
    margin-left: auto;
}

/* Chrome 150 regression (filamentphp/filament#20098, crbug 530131010): badges
   sit inside the theme's `-webkit-box` line-clamp wrapper, and Chrome 150
   stretches -webkit-box children to full width, turning pills into full-cell
   bars. Upstream-sanctioned shim; harmless no-op on correct browsers. Remove
   once Chrome ships the fix. Covers table cells and infolist entries. */
.fi-ta-text-item > .fi-badge,
.fi-in-text-item > .fi-badge {
    width: fit-content;
}

/* Sticky Header for Tables */
.fi-ta-content {
    overflow-y: auto;
    max-height: calc(100vh - 200px); /* Adjust based on layout */
}

.fi-ta-table thead tr th {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: rgb(255, 255, 255);
}

.dark .fi-ta-table thead tr th {
    background-color: rgb(24, 24, 27); /* Dark mode background */
}