.pagination {
  justify-content: center;
}

ul {
  list-style: none;
  padding: 0;
}

ul.pagination li {
  display: inline-block;
  width: 30px;
  border: 1px solid #e2e2e2;
  display: flex;
  justify-content: center;
  font-size: 25px;
}

ul.pagination li a {
  text-decoration: none;
  color: #337ab7;
  font-size: 20px;
}

ul.pagination li.active a {
  color: white;
}
ul.pagination li.active {
  background-color: #337ab7;
}

ul.pagination li a:hover,
ul.pagination li a.active {
  color: blue;
}

.page-selection {
  width: 48px;
  height: 30px;
  color: #337ab7;
}

.pagination-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.page-item.active .page-link {
  background-color: #e61e4d !important;
  border-color: #e61e4d !important;
}

.page-link {
  color: #e61e4d !important;
}

.page-link:hover {
  color: #e61e4d !important;
}


.categories-list {
  list-style-type: none;
  padding: 0;
}

.category-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.remove-button {
  margin-left: 8px;
  background-color: #ff5959;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  cursor: pointer;
}

.remove-button:hover {
  background-color: #ff4242;
}

.remove-button:focus {
  outline: none;
}


