.ag-ltr .ag-floating-filter-button .ag-icon {
  display: none !important;
}

/* Remove outlines on focus */
.ag-theme-alpine-dark:focus,
.ag-theme-alpine-dark .ag-root:focus,
.ag-theme-alpine-dark .ag-body-viewport:focus,
.ag-theme-alpine-dark .ag-paging-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Wrapper with border radius */
.ag-theme-alpine-dark .ag-root-wrapper {
  border-radius: 16px;
  overflow: visible !important; /* Allow popups/pagination to show */
  border: 1px solid #062e4c;
}

/* ───────────────────────────────
   2. Header Styling
──────────────────────────────── */
.ag-theme-alpine-dark .ag-header,
.ag-theme-alpine-dark .ag-header-cell,
.ag-theme-alpine-dark .ag-header-row {
  background-color: #171717 !important;
  border: 1px solid #010d15;
}

.ag-theme-alpine-dark .ag-header-cell-label {
  color: #eee !important;
  font-weight: bold;
}

/* ───────────────────────────────
   3. Row and Cell Styling
──────────────────────────────── */
.ag-theme-alpine-dark .ag-cell,
.ag-theme-alpine-dark .ag-row,
.ag-theme-alpine-dark .ag-body {
  background-color: #0c0c0c;
  color: #d5efde;
  border: 1px solid #010d15;
  font-size: 13px;
}

.ag-theme-alpine-dark .ag-row:hover {
  background-color: #171717;
}

/* ───────────────────────────────
   4. Selected Row Styling
──────────────────────────────── */
.ag-theme-alpine-dark .ag-row.ag-row-selected .ag-cell {
  background-color: #007ad0 !important;
  color: #ffffff !important;
}

/* Remove border on focused cells */
.ag-ltr .ag-cell-focus:not(.ag-cell-range-selected):focus-within {
  border: none !important;
  outline: none !important;
}

/* ───────────────────────────────
   5. Floating Pagination Bar
──────────────────────────────── */
.ag-theme-alpine-dark .ag-paging-panel {
  position: absolute !important;
  bottom: -45px !important;
  left: 0;
  right: 0;
  background-color: #0c0c0c;
  z-index: 10; /* Keep panel on top of container space */
}

/* ───────────────────────────────
   6. Image Hover Effects
──────────────────────────────── */
.ag-theme-alpine-dark img {
  transition: transform 0.2s ease, filter 0.2s ease;
}

.ag-theme-alpine-dark img:hover {
  transform: scale(1.2);
  filter: brightness(1.6);
}

/* ───────────────────────────────
   7. Z-Index Fix for Popups (THE FIX)
──────────────────────────────── */
.ag-rich-select-list {
  z-index: 9999 !important; /* Ensure dropdowns are on top of all content */
}
