/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.pagination-numbers {
    display: flex;
}

.pagination-button {
    padding: 10px 16px;
    background-color: #1a1a1a;
    color: #ccc;
    border: 1px solid #373737;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.pagination-button:hover {
    background-color: #ff5555;
    color: #fff;
}

.pagination-button.active {
    background-color: #ff5555;
    color: #fff;
    font-weight: bold;
}

.pagination-button.active:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination-button.active:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.prev, .next {
    background-color: #1a1a1a;
    color: #ccc;
}

.prev {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.next {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.prev:hover, .next:hover {
    background-color: #ff5555;
    color: #fff;
}
