/* Custom Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    margin: 1.5rem 0;
}

.pagination .page-item .page-link {
    position: relative;
    display: block;
    padding: 0.75rem 1rem;
    margin: 0 3px;
    color: #6a11cb;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease-in-out;
    border-radius: 4px;
    font-weight: 500;
}

.pagination .page-item .page-link:hover {
    z-index: 2;
    color: #fff;
    background-color: #6a11cb;
    border-color: #6a11cb;
    box-shadow: 0 4px 10px rgba(106, 17, 203, 0.2);
}

.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-color: #6a11cb;
    box-shadow: 0 4px 10px rgba(106, 17, 203, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: #8898aa;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

/* Previous/Next buttons styling */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Current page indicator */
.pagination .page-item.active .page-link {
    transform: scale(1.1);
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        width: 35px;
        height: 35px;
    }
}

/* Showing X to Y of Z results text styling */
.pagination-info {
    text-align: center;
    color: #8898aa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
} 