/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.pagination-btn:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
}

.pagination-btn.active {
    background: #4299e1;
    border-color: #4299e1;
    color: #fff;
    cursor: default;
    pointer-events: none;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #718096;
}

.no-results h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.no-results p {
    font-size: 16px;
    color: #718096;
}

.pagination-btn.disabled {
    background: #edf2f7;
    border-color: #e2e8f0;
    color: #a0aec0;
    cursor: default;
    pointer-events: none;
}

.pagination-ellipsis {
    padding: 0 6px;
    font-size: 14px;
    color: #a0aec0;
}

/* Responsive */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .pagination-btn {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}