/* 隱藏「完成排序」按鈕 */
button[wire\:click="toggleTableReordering"] {
    display: none !important;
}

/* 隱藏「拖曳項目調整排序」文字 */
.fi-ta-reorder-indicator {
    display: none !important;
}

/* ============================================
   拖曳把手 + Checkbox 同時顯示
   ============================================ */

/* 永遠顯示拖曳把手 */
.fi-ta-reorder-cell {
    display: table-cell !important;
}

/* 永遠顯示 checkbox */
.fi-ta-record-checkbox {
    display: flex !important;
}

/* checkbox cell 永遠顯示 */
.fi-ta-cell:has(.fi-ta-record-checkbox) {
    display: table-cell !important;
}

/* 確保 header 的 checkbox 也顯示 */
.fi-ta-header-cell:has(.fi-ta-record-checkbox) {
    display: table-cell !important;
}
