@use "../../../../styles/abstracts/variables" as *;

.paginationWrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.navButton {
  background: $col-orange; // replace with your color variable
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .85rem;
  transition: background 0.3s ease;

   @media only screen and (max-width: 1000px) {
      padding: 0.5rem .5rem;
    }

  &:hover:not(:disabled) {
    background-color: #e66a00;
    box-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
  }

  &:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
}

.currentPage {
  font-weight: 500;
  color: #FFF; 
  font-size: .85rem;
}
