/* styles.css */

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  user-select: none;
}

.page-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: none;
  border-radius: 6px;
  background-color: var(--primary-color);
  color: var( --btn-secundary-text-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}


.page-item.ellipsis {
  border: none;
  background: none;
  padding: 0 5px;
}

.page-item.active {
  background-color: var(--primary-color);
  border: 1px solid black;
  color: var(--btn-secundary-text-color);
  cursor: default;
}

html.dark-theme .page-item.page-item.active{
   border: 1px solid #fff;
}

.page-item.disabled {
  color: var(--primary-color);
  background-color: #f8f9fa;
  cursor: not-allowed;
  pointer-events: none;
}
