/* body {
  background: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
} */

.pagination {
  display: flex;
  gap: 10px;
}

.page {
  width: 35px;
  height: 35px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  background-color: #ead7c3;
  color: #000;
  transition: all 0.3s ease;
  font-family: Roboto Slab;
}

.page:hover {
  background-color: #d6b89c;
}

.page.active {
  background-color: #a86b2d; /* brown */
  color: #fff;
}

@media (min-width: 0px) and (max-width: 991px) {
  .page {
    width: 32px;
    height: 32px;
    margin-top: 10px;
  }
}
