/* Fix for Mantine DataTable checkbox column width */
.mantine-datatable.mantine-datatable-with-checkbox table.mantine-datatable-table.mantine-datatable-selection-column-visible th:first-child,
.mantine-datatable.mantine-datatable-with-checkbox table.mantine-datatable-table.mantine-datatable-selection-column-visible td:first-child {
  width: 35px !important;
  min-width: 35px !important;
  max-width: 35px !important;
}

/* Ensure checkbox is properly centered */
.mantine-datatable.mantine-datatable-with-checkbox table.mantine-datatable-table.mantine-datatable-selection-column-visible th:first-child,
.mantine-datatable.mantine-datatable-with-checkbox table.mantine-datatable-table.mantine-datatable-selection-column-visible td:first-child {
  text-align: center !important;
  padding: 8px !important;
}

/* Additional styling for better visual appearance */
.mantine-datatable.mantine-datatable-with-checkbox table.mantine-datatable-table.mantine-datatable-selection-column-visible th:first-child input[type="checkbox"],
.mantine-datatable.mantine-datatable-with-checkbox table.mantine-datatable-table.mantine-datatable-selection-column-visible td:first-child input[type="checkbox"] {
  margin: 0 auto !important;
  display: block !important;
}
