.pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end; /* align to right */
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination button {
  padding: 6px 12px;
  border: none;
  background: #1e293b;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.pagination button:hover {
  background: #334155;
}

.pagination button.active {
  font-weight: bold;
  background: #3b82f6;
}

.pagination .dots {
  color: #666;
  padding: 0 4px;
}


