.table-wrapper {
  background: #000;
  overflow-x: auto;
  border: 1px solid #222;
  border-radius: 6px;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table th {
  background: #000;
  color: #878790;
  padding: 16px 12px;
  border-bottom: 1px solid #333;
  text-align: center;
  font-weight: 500;
}

.custom-table td {
  background: #000;
  color: #fff;
  padding: 14px 10px;
  border-bottom: 1px solid #222;
  text-align: center;
}

.custom-table tr:hover td {
  background: #0f0f0f;
}

.no-data {
  padding: 20px;
  text-align: center;
  color: #999;
}

/* ===== PAGINATION (UNCHANGED) ===== */

.pagination-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.custom-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.page-btn.active {
  background: #2f2f2f;
  border-color: #2f2f2f;
}

.page-btn.arrow {
  font-size: 18px;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
