
/* paginacao container */
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pagination button {
  background-color: #e7e5e5;
  border: none;
  color: black;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 0 5px;
  cursor: pointer;
}

.pagination button.active {
  background-color: rgb(53, 52, 95);
  color: white;
}

.items-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


