/*
 * App-level CSS tweaks, registered with Filament via FilamentAsset in
 * AppServiceProvider so both panels (admin + embedded) load it. The app has
 * no Tailwind build for custom markup (Filament's precompiled CSS only), so
 * tiny presentation fixes live here as plain CSS.
 */

/*
 * awcodes/filament-table-repeater, streamlined mode: body cells
 * (td.table-repeater-column) render without any padding — the vendor blade
 * only applies `p-2` when NOT streamlined — so inputs in adjacent columns
 * touch and placeholder values sit flush against the next field. Give each
 * cell horizontal breathing room, keeping the outer edges flush with the
 * container ring.
 */
.table-repeater-component.streamlined .table-repeater-row:not(.table-repeater-empty-row) > .table-repeater-column {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.table-repeater-component.streamlined .table-repeater-row:not(.table-repeater-empty-row) > .table-repeater-column:first-child {
    padding-left: 0;
}

.table-repeater-component.streamlined .table-repeater-row:not(.table-repeater-empty-row) > .table-repeater-column:last-child {
    padding-right: 0;
}
