/* Pagination.module.css */
.paginationContainer {
    display: flex;
    justify-content: center;
  }
  
  .button {
    cursor: pointer;
    padding: 10px;
    margin: 5px;
    border: none;
    background-color: #f3f3f3;
  }
  
  .button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  .active {
    background-color: red;
  }
  