/* Add custom styling to reduce pagination size */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-item {
    margin: 0 5px;
    font-size: 14px; /* Adjust the font size as needed */
}

.pagination .page-link {
    padding: 5px 10px;
}

.pagination .active .page-link {
    background-color: #ff006a; /* Set the color for the active page */
    border-color: #00ff2a;
}

/* Adjust the size of pagination arrow images */
.pagination .page-item .page-link img {
    width: 20px; /* Adjust the width as needed */
    height: auto; /* Maintain the aspect ratio */
}

/* Adjust the size of pagination arrow images */
.pagination .page-item .page-link img {
    width: 20px; /* Adjust the width as needed */
    height: auto; /* Maintain the aspect ratio */
}

/* Adjust the size of left and right pagination arrows */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-size: 14px; /* Adjust the font size for left and right arrows */
}
