      html, body {
        height: 100%;
        display: flex;
        flex-direction: column;
      }
      
      .main-content {
        flex: 1;
        background-color: #f3f7ff;


      }

      .full-width {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
      }

      .page-footer {
        position: relative;
        bottom: 0;
        width: 99%;
        text-align: center;
        padding: 45px 0;
        background-color: #f8f8f8;
        border-top: 1px solid #ddd;
      }

      .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
      }

      .pagination a {
        background-color: #005a87;
        color: white;
        padding: 10px 15px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
      }

      .pagination a:hover {
        background-color: #004067;
      }