
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .content {
      flex: 1;
      padding: 20px;
    }

    .pagination-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 20px;
      border-top: 1px solid #ccc;
      background-color: #f9f9f9;
      flex-wrap: wrap;
    }

    .page-info {
      margin-right: 10px;
    }

    .page-number {
      cursor: pointer;
      width: 32px;
      height: 32px;
      line-height: 32px;
      border-radius: 50%;
      text-align: center;
      color: black;
      transition: background-color 0.2s;
      font-weight: bold;
    }

    .page-number:hover {
      background-color: #e0e0e0;
    }

    .active {
      background-color: #1976d2;
      color: white;
    }

    .next {
      color: #1976d2;
      font-weight: bold;
      cursor: pointer;
      padding: 5px 10px;
    }
