/* DataTables extras */
.dt-top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  gap: 8px;
}

.dt-search-label {
  font-size: 12px;
  color: #6b7280;
}

.dt-search-input {
  padding: 5px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 12px;
  outline: none;
  width: 180px;
}

.dt-search-input:focus { border-color: #3b82f6; }

.dt-col-sort { cursor: pointer; user-select: none; white-space: nowrap; }
.dt-col-sort i { font-size: 8px; margin-left: 4px; color: #d1d5db; }
.dt-col-sort:hover i { color: #6b7280; }

.dt-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 8px;
}

.dt-info { font-size: 11px; color: #6b7280; }

.dt-pages {
  display: flex;
  gap: 4px;
  align-items: center;
}

.dt-page {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  color: #374151;
  transition: 0.2s;
}

.dt-page:hover { background: #f3f4f6; }
.dt-page.dt-active { background: #3b82f6; color: #fff; border-color: #3b82f6; font-weight: 700; }
.dt-page.dt-disabled { color: #d1d5db; cursor: default; pointer-events: none; }
