/* Table: prevent wrapping */
#datasetTable th, #datasetTable td { 
    white-space: nowrap !important; 
}

table.dataTable>thead>tr>th, #datasetTable td {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}


/* Make DataTables filter + custom filter button inline */
.dataTables_filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Keep search input sane */
.dataTables_filter input {
  width: 260px;
}

/* Filter button */
  #filterBtn {
      padding: 8px 25px;
  }

/* Filter button badge */
.filter-count {
  background: #cfe8ff;
  color: #004085;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}

/* === FORCE SEARCH + FILTER BUTTON INLINE === */

.dataTables_filter {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap !important;
}

/* Kill DataTables full-width label */
.dataTables_filter label {
  display: flex !important;
  align-items: center;
  width: auto !important;
  margin: 0 !important;
  white-space: nowrap;
}

/* Ensure toolbar stays inline */
.datatable-toolbar {
  display: flex !important;
  align-items: center;
  margin: 0 !important;
}
