#content {
    max-width: 700px;
}

h1 {
    line-height: 1;
}

h2 {
    margin: 30px 0px 0px 0px;
}

li {
    line-height: 1;
    margin: 10px;
}

p {
    text-align: left;
}
/* Container styling */
.pagination {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.page-item {
    margin: 0 5px;
}

/* Default page links */
.page-link {
    display: inline-block;
    padding: 8px 12px;
    color: #007bff;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect */
.page-link:hover {
    background-color: #e9ecef;
    color: #0056b3;
    text-decoration: none;
}

/* Active page link */
.page-item.active .page-link {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Disabled state */
.page-item.disabled .page-link {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    pointer-events: none;
    cursor: not-allowed;
}
